KoneMutableList
Represents a finite collection of elements with some order on them with possibility to add, replace, and replace element at the provided index.
This interface's inheritors must have some specific structure that provides optimised elements access or optimised elements iteration. Without both of them (or with bad time complexity like \(O(n)\)) the interface should not be used.
Inheritors
Functions
Adds provided elements at the end of the ordered collection.
Checks if the iterable is not empty.
Initiates a mutable iterator over the collection's elements with pointer before the first element.
Initiates a mutable iterator over the collection's elements with pointer between elements with indices index - 1
and index
correspondingly.
Removes elements that satisfy the provided predicate.
Removes elements that satisfy the provided predicate.
Iterates over the collection and retains only the elements matching the predicate.
Iterates over the collection and retains only the elements matching the predicate.