Lexically compare two character sequences for being less. In this version the left-hand side character sequences is by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | lhs | |||
| character(len=*), | intent(in) | :: | rhs |
elemental function llt_string_char(lhs, rhs) result(is_llt) type(string_type), intent(in) :: lhs character(len=*), intent(in) :: rhs logical :: is_llt is_llt = llt(maybe(lhs), rhs) end function llt_string_char