neq<U> method

ValueCell<bool> neq<U>(
  1. ValueCell<U> other
)

Returns a new ValueCell which compares the value of this cell to another cell for inequality.

The returned ValueCell has a value of false when this cell and other have the same value according to the equality relation, and a value of true otherwise.

The observers of the returned ValueCell are notified when either the value of this cell or other changes.

Implementation

ValueCell<bool> neq<U>(ValueCell<U> other) => equalityCellFactory.makeNeq(this, other);