option_eq_character Function

private elemental function option_eq_character(lhs, rhs) result(is_it)

Equal to character logical operator.

Arguments

TypeIntentOptionalAttributesName
class(option), intent(in) :: lhs

Left hand side.

character(kind=CK,len=*), intent(in) :: rhs

Right hand side.

Return Value logical

Opreator test result.


Contents

Source Code


Source Code

  elemental function option_eq_character(lhs, rhs) result(is_it)
  !< Equal to character logical operator.
  class(option),             intent(in) :: lhs   !< Left hand side.
  character(kind=CK, len=*), intent(in) :: rhs   !< Right hand side.
  logical                               :: is_it !< Opreator test result.

  is_it = lhs%oname == rhs
  endfunction option_eq_character