length property

ValueCell<int> get length

Returns a cell which evaluates to Iterable.length applied on the value in this cell.

Implementation

ValueCell<int> get length => apply((value) => value.length,
    key: _IterablePropKey(this, #length)
).store(changesOnly: true);