KoneGrowableMutableListProducer

Represents a companion object (not in the Kotlin meaning but in common one) of growable KoneMutableList inheritor type that abstract API of this type of lists creation.

Inheritors

Functions

Link copied to clipboard

Produces empty list.

abstract fun <Element> produce(initialCapacity: UInt): KoneGrowableMutableList<Element>

Produces empty list with initial capacity not less than initialCapacity.

Link copied to clipboard
open override fun <Element> produceBy(number: UInt, builder: (UInt) -> Element): KoneGrowableMutableList<Element>

Produces this type list of provided number size and initialises the elements with the provided builder.

abstract fun <Element> produceBy(initialCapacity: UInt, number: UInt, builder: (UInt) -> Element): KoneGrowableMutableList<Element>

Produces this type list of provided initialCapacity capacity and number size and initialises the elements with the provided builder.