makeNeq<T, U> method
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
@override
ValueCell<bool> makeNeq<T, U>(ValueCell<T> self, ValueCell<U> other) =>
NeqCell(self, other);