Function

MutableVector

Create a MutableVector with a given initial capacity.

RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free
Source set: Common

Added in 1.11.0-rc01

public inline fun <reified T> MutableVector(capacity: Int = 16): MutableVector<T>

Create a MutableVector with a given initial capacity.

Source set: Common

Added in 1.11.0-rc01

public inline fun <reified T> MutableVector(
    size: Int,
    noinline init: (Int) -> T,
): MutableVector<T>

Create a MutableVector with a given size, initializing each element using the init function.

init is called for each element in the MutableVector, starting from the first one and should return the value to be assigned to the element at its given index.