public function decCompareAsInt128(firstString, secondString, output) result(error)
Compare two strings as signed decimal integer strings by parsing them to int128 values first.
This function will return a logical value of .TRUE.
if an error has occurred during parsing either one of the input
strings. Otherwise, a logical .FALSE.
value will be returned.
See
Arguments
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | firstString | A string to be compared to the string | ||
character(len=*), | intent(in) | :: | secondString | A string to be compared to the string | ||
integer(kind=k_int32), | intent(out) | :: | output | An int32 value of 1 if the |