Basic string to integer routine
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(string), | intent(in) | :: | me |
pure elemental function string_to_int_64(me) result(i) class(string),intent(in) :: me integer(ip) :: i i = int(me%str, ip) end function string_to_int_64