Package-level declarations

Types

Link copied to clipboard

Represents a doubly linked list that is laid out on three arrays of the same fixed capacity instead of using object nodes.

Link copied to clipboard

Represents a doubly linked nodded list that is laid out on three arrays of the same fixed capacity instead of using object nodes.

Link copied to clipboard

Represents a list that is laid out consecutively on a prefix of array of fixed capacity.

Link copied to clipboard

Represents a nodded list that is laid out consecutively on a prefix of array of fixed capacity.

Link copied to clipboard

Represents a usual (settable) array of elements of type Element.

Link copied to clipboard
@Serializable(with = KoneLazyListSerializer::class)
class KoneLazyList<Element>(val size: UInt, generator: (index: UInt) -> Element) : KoneSettableList<Element>

Represents a settable list which elements are either set and stored in an array or marked to be initialised by the provided generator.

Link copied to clipboard
@Serializable(with = KoneVirtualListSerializer::class)
class KoneVirtualList<Element>(val size: UInt, generator: (index: UInt) -> Element) : KoneList<Element>

Represents an immutable list which elements are not stored anywhere but are generated with generator function instead on each access.

Functions

Link copied to clipboard

Returns an empty KoneArrayFixedCapacityLinkedList of provided capacity.

Returns a KoneArrayFixedCapacityLinkedList of provided size (and equal capacity) of elements produced by the initializer.

Returns a KoneArrayFixedCapacityLinkedList of provided size and capacity of elements produced by the initializer.

Link copied to clipboard

Returns an empty KoneArrayFixedCapacityList of provided capacity.

inline fun <Element> KoneArrayFixedCapacityList(size: UInt, initializer: (index: UInt) -> Element): KoneArrayFixedCapacityList<Element>

Returns a KoneArrayFixedCapacityList of provided size (and equal capacity) of elements produced by the initializer.

inline fun <Element> KoneArrayFixedCapacityList(capacity: UInt, size: UInt, initializer: (index: UInt) -> Element): KoneArrayFixedCapacityList<Element>

Returns a KoneArrayFixedCapacityList of provided size and capacity of elements produced by the initializer.

Link copied to clipboard

Returns an empty KoneArrayFixedCapacityNoddedList of provided capacity.

Returns a KoneArrayFixedCapacityNoddedList of provided size (and equal capacity) of elements produced by the initializer.

inline fun <Element> KoneArrayFixedCapacityNoddedList(size: UInt, capacity: UInt, initializer: (index: UInt) -> Element): KoneArrayFixedCapacityNoddedList<Element>

Returns a KoneArrayFixedCapacityNoddedList of provided size and capacity of elements produced by the initializer.

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

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

Link copied to clipboard
Link copied to clipboard