cf.FieldList.__ne__

FieldList.__ne__(other)[source]

The rich comparison operator !=

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

Each field in the field list is compared with the field’s equals method, as opposed to the == operator.

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

Returns:bool