toSet method

ValueCell<Set<T>> toSet()

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

Implementation

ValueCell<Set<T>> toSet() => apply((value) => value.toSet(),
    key: _IterablePropKey(this, #toSet)
).store();