ConcurrentList
class ConcurrentList<T> : MutableList<T>
Constructors
ConcurrentList() |
Properties
var size: Int |
Functions
fun addAll(index: Int, elements: Collection<T>): Boolean fun addAll(elements: Collection<T>): Boolean |
|
fun clear(): Unit |
|
fun containsAll(elements: Collection<T>): Boolean |
|
fun hashCode(): Int |
|
fun isEmpty(): Boolean |
|
fun iterator(): MutableIterator<T> |
|
fun listIterator(): MutableListIterator<T> fun listIterator(index: Int): MutableListIterator<T> |
|
fun removeAll(elements: Collection<T>): Boolean |
|
fun retainAll(elements: Collection<T>): Boolean |
|
fun subList(fromIndex: Int, toIndex: Int): MutableList<T> |
|
fun toString(): String |