KoneGrowableMutableNoddedListProducer

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

Inheritors

Functions

Link copied to clipboard

Produces empty list.

abstract override fun <Element> produce(initialCapacity: UInt): KoneGrowableMutableNoddedList<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): KoneGrowableMutableNoddedList<Element>

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

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

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