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