A CF-compliant earth science data analysis library
FieldList.
__ne__
The rich comparison operator !=
!=
f.__ne__(x) <==> f != x
Each construct in the list is compared with its equals method, rather than the == operator.
equals
==
Note that f != x is equivalent to not f.equals(x).
f != x
not f.equals(x)
bool