Abstract Dsl Mutable List
abstract class AbstractDslMutableList<I, O>(initial: MutableList<I> = mutableListOf()) : AbstractMutableList<O> , DslReplaceableList<O> (source)
An abstract class that provides a mutable list DSL implementation.
This class allows you to create a mutable list that transforms elements from type I to type O and vice versa. It provides methods to get, set, add, and remove elements while maintaining the transformation logic.
Parameters
I
The original type of the elements in the list.
O
The output type of the elements in the list after transformation.
Inheritors
Properties
Link copied to clipboard
The delegate list that stores the original type I values. This is mutable and can be replaced with a new list.
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Replaces the current list with a new one.
Link copied to clipboard
Link copied to clipboard