MutableListCellExtension<T> extension
Provides variants which return MutableCell of the methods provided by ListCellExtension.
- on
-
- MutableCell<
List< T> >
- MutableCell<
Properties
-
first
→ MutableCell<
T> -
Available on MutableCell<
Returns a cell which evaluates to List.first applied on the value in this cell.List< , provided by the MutableListCellExtension extensionT> >no setter -
last
→ MutableCell<
T> -
Available on MutableCell<
Returns a cell which evaluates to List.last applied on the value in this cell.List< , provided by the MutableListCellExtension extensionT> >no setter -
length
→ MutableCell<
int> -
Available on MutableCell<
Returns a cell which evaluates to List.length applied on the value in this cell.List< , provided by the MutableListCellExtension extensionT> >no setter
Operators
-
operator [](
ValueCell< int> index) → MutableCell<T> -
Available on MutableCell<
Returns a cell with a value equal to the element atList< , provided by the MutableListCellExtension extensionT> >index
in the List held in this cell. -
operator []=(
int index, T elem) → void -
Available on MutableCell<
Set the value of elementList< , provided by the MutableListCellExtension extensionT> >index
toelem
in the List held in this cell.