produceBy

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