BoolCellExtension extension
Extends bool cells with logical and selection operators
Methods
-
and(
ValueCell< bool> other) → ValueCell<bool> -
Create a new cell which is the logical and of
this
andother
. -
not(
) → ValueCell< bool> -
Create a new cell which is the logical not of
this
. -
or(
ValueCell< bool> other) → ValueCell<bool> -
Create a new cell which is the logical or of
this
andother
. -
select<
T> (ValueCell< T> ifTrue, [ValueCell<T> ? ifFalse]) → ValueCell<T> -
Create a new cell which selects between the values of two cells based on
this
.