produceBy
open override fun <Element> produceBy(number: UInt, builder: (UInt) -> Element): KoneMutableNoddedList<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 override fun <Element> produceBy(initialCapacity: UInt, number: UInt, builder: (UInt) -> Element): KoneMutableNoddedList<Element>(source)
Produces this type list of provided capacity and number size and initialises the elements with the provided builder.
number must be not greater than capacity. 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 capacity