Lexically compare two character sequences for being greater or equal. In this version both character sequences are by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | lhs | |||
| type(string_type), | intent(in) | :: | rhs |
elemental function lge_string_string(lhs, rhs) result(is_lge) type(string_type), intent(in) :: lhs type(string_type), intent(in) :: rhs logical :: is_lge is_lge = lge(maybe(lhs), maybe(rhs)) end function lge_string_string