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