Package-level declarations

Types

Link copied to clipboard
@Serializable(with = DefaultKoneGrowableMutableListSerializer::class)
interface KoneGrowableMutableList<Element> : KoneMutableList<Element>

Represents a KoneMutableList which inner structure has a capacity that can be increased.

Link copied to clipboard
@Serializable(with = DefaultKoneGrowableMutableNoddedListSerializer::class)
interface KoneGrowableMutableNoddedList<Element> : KoneMutableNoddedList<Element> , KoneGrowableMutableList<Element>

Represents a nodded version of KoneGrowableMutableList. See KoneNoddedList for more.

Link copied to clipboard
@Serializable(with = DefaultKoneListSerializer::class)
interface KoneList<out Element> : KoneLinearIterable<Element>

Represents a finite collection of elements with some order on them.

Link copied to clipboard
Link copied to clipboard
interface KoneListNode<out Element>

Represents a node in the inner structure of a KoneNoddedList. See KoneNoddedList and KoneList for more.

Link copied to clipboard
@Serializable(with = DefaultKoneMutableListSerializer::class)
interface KoneMutableList<Element> : KoneSettableList<Element> , KoneMutableLinearIterable<Element>

Represents a finite collection of elements with some order on them with possibility to add, replace, and replace element at the provided index.

Link copied to clipboard

Represents a node in the inner structure of a KoneMutableNoddedList. See KoneMutableNoddedList and KoneMutableList for more.

Link copied to clipboard
@Serializable(with = DefaultKoneMutableNoddedListSerializer::class)
interface KoneMutableNoddedList<Element> : KoneSettableNoddedList<Element> , KoneMutableList<Element>

Represents a nodded version of KoneMutableList. See KoneNoddedList for more.

Link copied to clipboard
@Serializable(with = DefaultKoneNoddedListSerializer::class)
interface KoneNoddedList<out Element> : KoneList<Element>

Represents a nodded version of KoneList.

Link copied to clipboard
@Serializable(with = DefaultKoneSettableListSerializer::class)
interface KoneSettableList<Element> : KoneList<Element> , KoneSettableLinearIterable<Element>

Represents a finite collection of elements with some order on them with possibility to replace element at the provided index.

Link copied to clipboard

Represents a node in the inner structure of a KoneSettableNoddedList. See KoneSettableNoddedList and KoneSettableList for more.

Link copied to clipboard
@Serializable(with = DefaultKoneSettableNoddedListSerializer::class)
interface KoneSettableNoddedList<Element> : KoneNoddedList<Element> , KoneSettableList<Element>

Represents a nodded version of KoneSettableList. See KoneNoddedList for more.

Properties

Link copied to clipboard

Returns the list's indices range.

Link copied to clipboard

Returns the last index of elements in the list.

Functions

Link copied to clipboard

Adds provided elements at the end of the ordered collection.

Link copied to clipboard

Adds provided elements before element with index index.

Link copied to clipboard
inline fun <Element> buildKoneList(builderAction: KoneMutableList<Element>.() -> Unit): KoneList<Element>
inline fun <Element> buildKoneList(initialCapacity: UInt, builderAction: KoneMutableList<Element>.() -> Unit): KoneList<Element>
Link copied to clipboard

Returns empty list.

Link copied to clipboard

Returns the element at the provided index wrapped in Some or None if index is out of bounds.

Link copied to clipboard
fun <Element> KoneList<Element>.getOrElse(index: UInt, block: () -> Element): Element
Link copied to clipboard

Returns the element at the provided index or null if index is out of bounds.

Link copied to clipboard
inline fun <Element> KoneList(size: UInt, initializer: (index: UInt) -> Element): KoneList<Element>

Returns a list of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard
inline fun <Element> KoneMutableList(size: UInt, initializer: (index: UInt) -> Element): KoneMutableList<Element>

Returns a mutable list of provided size of elements produced by the initializer.

Link copied to clipboard
inline fun <Element> KoneSettableList(size: UInt, initializer: (index: UInt) -> Element): KoneSettableList<Element>

Returns a settable list of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <Element> KoneMutableList<Element>.retainAllThat(crossinline predicate: (element: Element) -> Boolean)

Iterates over the collection and retains only the elements matching the predicate.

Link copied to clipboard
inline fun <Element> KoneMutableList<Element>.retainAllThatIndexed(crossinline predicate: (index: UInt, element: Element) -> Boolean)

Iterates over the collection and retains only the elements matching the predicate.

Link copied to clipboard