Logical inequality comparison function. Overloads the /=
operator.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(domain_type), | intent(in) | :: | self | l.h.s. |
||
class(domain_type), | intent(in) | :: | d2 | r.h.s. |
pure elemental logical function neq(self,d2)
!! Logical inequality comparison function. Overloads the `/=` operator.
class(domain_type),intent(in) :: self
!! l.h.s. `domain` instance
class(domain_type),intent(in) :: d2
!! r.h.s. `domain` instance
neq = .not. self == d2
endfunction neq