map<E> method

ValueCell<Iterable<E>> map<E>(
  1. E convert(
    1. T e
    )
)

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

Implementation

ValueCell<Iterable<E>> map<E>(E Function(T e) convert) =>
    apply((value) => value.map(convert),
      key: _IterablePropKey(this, (#map, convert))
    ).store();