produceBy
open override fun <Element> produceBy(number: UInt, builder: (UInt) -> Element): KoneGrowableMutableList<Element>(source)
Produces this type list of provided number size and initialises the elements with the provided builder.
i
th element of the list is set to builder(i)
. All builder invocations are computed consecutively on values from 0
to number exclusive in their order starting with 0
.
abstract fun <Element> produceBy(initialCapacity: UInt, number: UInt, builder: (UInt) -> Element): KoneGrowableMutableList<Element>(source)
Produces this type list of provided initialCapacity capacity and number size and initialises the elements with the provided builder.
number must be not greater than initialCapacity. Otherwise IllegalArgumentException is thrown. i
th element of the list is set to builder(i)
. All builder invocations are computed consecutively on values from 0
to number exclusive in their order starting with 0
.
Throws
when number is greater than initialCapacity