KoneFixedCapacityMutableListProducer

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

Inheritors

Functions

Link copied to clipboard
abstract fun <Element> produce(capacity: UInt): KoneMutableList<Element>

Produces empty list of the fixed provided capacity.

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

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

abstract fun <Element> produceBy(capacity: UInt, number: UInt, builder: (UInt) -> Element): KoneMutableList<Element>

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