llt_char_string Function

private elemental function llt_char_string(lhs, rhs) result(is_llt)

Lexically 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


Calls

proc~~llt_char_string~~CallsGraph proc~llt_char_string llt_char_string proc~maybe maybe proc~llt_char_string->proc~maybe

Called by

proc~~llt_char_string~~CalledByGraph proc~llt_char_string llt_char_string interface~llt llt interface~llt->proc~llt_char_string

Source Code

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

   is_llt = llt(lhs, maybe(rhs))

end function llt_char_string