cast<R> method

ValueCell<Iterable<R>> cast<R>()

Returns a cell which evaluates to Iterable.cast<R>() applied on the value in this cell.

Implementation

ValueCell<Iterable<R>> cast<R>() => apply((value) => value.cast<R>(),
    key: _IterableTypedPropKey<R>(this, #cast)
).store();