lle_string_char Function

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

Lexically compare two character sequences for being less or equal. In this version the left-hand side character sequences is by a string.

Arguments

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

Return Value logical


Calls

proc~~lle_string_char~~CallsGraph proc~lle_string_char lle_string_char proc~maybe maybe proc~lle_string_char->proc~maybe

Called by

proc~~lle_string_char~~CalledByGraph proc~lle_string_char lle_string_char interface~lle lle interface~lle->proc~lle_string_char

Source Code

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

   is_lle = lle(maybe(lhs), rhs)

end function lle_string_char