ge_string_char Function

private elemental function ge_string_char(lhs, rhs) result(is_ge)

Compare two character sequences for being greater 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


Called by

proc~~ge_string_char~~CalledByGraph proc~ge_string_char ge_string_char interface~operator(gt=) operator(>=) interface~operator(gt=)->proc~ge_string_char

Source Code

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

   is_ge = .not. (rhs > lhs)

end function ge_string_char