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