Kactoos

kactoos-jvm / nnl.rocks.kactoos.list / SolidList

SolidList

class SolidList<X : Any> : ListEnvelope<X>

A List that is both synchronized and sticky.

Objects of this class are thread-safe.

Parameters

X - Type of item

Since 0.4

Constructors

Name Summary
<init> SolidList(list: Collection<X>)
SolidList(vararg items: X)
SolidList(items: Iterable<X>)

Inherited Functions

Name Summary
iterator open fun iterator(): Iterator<T>
listIterator open fun listIterator(): ListIterator<T>
open fun listIterator(index: Int): ListIterator<T>