lle_char_string Function

private elemental function lle_char_string(lhs, rhs) result(is_lle)

Lexically compare two character sequences for being less or equal 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~~lle_char_string~~CallsGraph proc~lle_char_string lle_char_string proc~maybe maybe proc~lle_char_string->proc~maybe

Called by

proc~~lle_char_string~~CalledByGraph proc~lle_char_string lle_char_string interface~lle lle interface~lle->proc~lle_char_string

Source Code

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

   is_lle = lle(lhs, maybe(rhs))

end function lle_char_string