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