produceBy
abstract override fun <Element> produceBy(number: UInt, builder: (UInt) -> Element): KoneMutableList<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
.