makeNeq<T, U> abstract method

ValueCell<bool> makeNeq<T, U>(
  1. ValueCell<T> self,
  2. ValueCell<U> other
)

Create a cell which compares whether self is equal to other.

The cell should notify its observers whenever either self or other change their values.

Implementation

ValueCell<bool> makeNeq<T,U>(ValueCell<T> self, ValueCell<U> other);