lt_char_string Function

private elemental function lt_char_string(lhs, rhs) result(is_lt)

Compare two character sequences for being less. In this version the right-hand side character sequences is by a string.

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: lhs
type(string_type), intent(in) :: rhs

Return Value logical


Called by

proc~~lt_char_string~~CalledByGraph proc~lt_char_string lt_char_string interface~operator(lt) operator(<) interface~operator(lt)->proc~lt_char_string

Source Code

elemental function lt_char_string(lhs, rhs) result(is_lt)
   character(len=*), intent(in) :: lhs
   type(string_type), intent(in) :: rhs
   logical :: is_lt

   is_lt = rhs > lhs

end function lt_char_string