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