FastArrayList

expect constructor()
expect constructor(initialCapacity: Int)
expect constructor(elements: Collection<E>)
actual constructor()

Creates an empty FastArrayList.


actual constructor(initialCapacity: Int)

Creates an empty FastArrayList.

Parameters

initialCapacity

initial capacity (ignored)


actual constructor(elements: Collection<E>)

Creates an FastArrayList filled from the elements collection.

actual constructor()
actual constructor(initialCapacity: Int)
actual constructor(elements: Collection<E>)