mutableVectorOf

Function

Common
public inline fun <reified T> mutableVectorOf(): MutableVector<T>

Creates an empty MutableVector with a capacity of 16.

Common
public inline fun <reified T> mutableVectorOf(vararg elements: T): MutableVector<T>

Creates a MutableVector with the given values. This will use the passed vararg elements storage.