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