cf.FieldList.__ne__

FieldList.__ne__(other)[source]

The rich comparison operator !=

f.__ne__(x) <==> f != x

Each construct in the list is compared with its equals method, rather than the == operator.

Note that f != x is equivalent to not f.equals(x).

Returns

bool