and method

ValueCell<bool> and(
  1. ValueCell<bool> other
)

Create a new cell which is the logical and of this and other.

A keyed cell is returned which is unique for this cell and other.

Implementation

ValueCell<bool> and(ValueCell<bool> other) => ComputeCell(
    compute: () => value && other.value,
    arguments: {this, other},
    key: _AndCellKey(this, other)
);