makeEq<T, U> abstract 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
ValueCell<bool> makeEq<T,U>(ValueCell<T> self, ValueCell<U> other);