BoolCellExtension extension

Extends bool cells with logical and selection operators

on

Methods

and(ValueCell<bool> other) ValueCell<bool>
Create a new cell which is the logical and of this and other.
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 and other.
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.