KoneArrayFixedCapacityLinkedList
fun <Element> KoneArrayFixedCapacityLinkedList(capacity: UInt): KoneArrayFixedCapacityLinkedList<Element>(source)
Returns an empty KoneArrayFixedCapacityLinkedList of provided capacity.
fun <Element> KoneArrayFixedCapacityLinkedList(size: UInt, initializer: (index: UInt) -> Element): KoneArrayFixedCapacityLinkedList<Element>(source)
Returns a KoneArrayFixedCapacityLinkedList of provided size (and equal capacity) of elements produced by the initializer.
The element with index i
(from 0
to size exclusive) is initializer(index)
. All initializer invocations are computed consecutively on values from 0
to size exclusive in their order starting with 0
.
fun <Element> KoneArrayFixedCapacityLinkedList(size: UInt, capacity: UInt, initializer: (index: UInt) -> Element): KoneArrayFixedCapacityLinkedList<Element>(source)
Returns a KoneArrayFixedCapacityLinkedList of provided size and capacity of elements produced by the initializer.
The element with index i
(from 0
to size exclusive) is initializer(index)
. All initializer invocations are computed consecutively on values from 0
to size exclusive in their order starting with 0
.