ListCellExtension<T> extension
Properties
-
cellList
→ ValueCell<
Iterable< ValueCell< >T> > -
Available on ValueCell<
Returns a cell which wraps the elements of the List held in this cell in ValueCells.List< , provided by the ListCellExtension extensionT> >no setter -
reversed
→ ValueCell<
Iterable< T> > -
Available on ValueCell<
Returns a cell which evaluates to List.reversed applied on the value in this cell.List< , provided by the ListCellExtension extensionT> >no setter
Methods
-
cast<
R> () → ValueCell< List< R> > -
Available on ValueCell<
Returns a cell which evaluates to List.cast<R>() applied on the value in this cell.List< , provided by the ListCellExtension extensionT> > -
mapCells<
E> (E fn(T e)) → ValueCell< Iterable< ValueCell< >E> > -
Available on ValueCell<
Apply a function on the value of every cell in cellList.List< , provided by the ListCellExtension extensionT> >
Operators
-
operator [](
ValueCell< int> index) → ValueCell<T> -
Available on ValueCell<
Returns a cell with a value equal to the element atList< , provided by the ListCellExtension extensionT> >index
in the List held in this cell.