single property

ValueCell<T> get single

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

Implementation

ValueCell<T> get single => apply((value) => value.single,
    key: _IterablePropKey(this, #single)
);