KoneArrayFixedCapacityLinkedNoddedList
fun <Element> KoneArrayFixedCapacityLinkedNoddedList(capacity: UInt): KoneArrayFixedCapacityLinkedNoddedList<Element>(source)
Returns an empty KoneArrayFixedCapacityLinkedNoddedList of provided capacity.
fun <Element> KoneArrayFixedCapacityLinkedNoddedList(size: UInt, initializer: (index: UInt) -> Element): KoneArrayFixedCapacityLinkedNoddedList<Element>(source)
Returns a KoneArrayFixedCapacityLinkedNoddedList 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> KoneArrayFixedCapacityLinkedNoddedList(size: UInt, capacity: UInt, initializer: (index: UInt) -> Element): KoneArrayFixedCapacityLinkedNoddedList<Element>(source)
Returns a KoneArrayFixedCapacityLinkedNoddedList 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
.