first property

ValueCell<T> get first

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

Implementation

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