Lexically compare two character sequences for being greater or equal In this version the right-hand side character sequences is by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | lhs | |||
| type(string_type), | intent(in) | :: | rhs |
elemental function lge_char_string(lhs, rhs) result(is_lge) character(len=*), intent(in) :: lhs type(string_type), intent(in) :: rhs logical :: is_lge is_lge = lge(lhs, maybe(rhs)) end function lge_char_string