A CF-compliant earth science data analysis library
FieldList.
__contains__
Called to implement membership test operators.
x.__contains__(y) <==> y in x
Each construct in the list is compared with its equals method, rather than the == operator.
equals
==
Note that x in fl is equivalent to any(f.equals(x) for f in fl).
x in fl
any(f.equals(x) for f in fl)