Functions

Link copied to clipboard
open override fun <E> produce(capacity: UInt): KoneArrayFixedCapacityLinkedList<E>

Produces empty list of the fixed provided capacity.

Link copied to clipboard
open override fun <E> produceBy(capacity: UInt, number: UInt, builder: (UInt) -> E): KoneMutableList<E>

Produces this type list of provided capacity and number size and initialises the elements with the provided builder.

open override fun <Element> produceBy(number: UInt, builder: (UInt) -> Element): KoneMutableList<Element>

Produces this type list of provided number size and initialises the elements with the provided builder.