mutableObjectListOf

fun <T> mutableObjectListOf(vararg elements: T): ObjectArrayList<T>
fun <T> mutableObjectListOf(): ObjectArrayList<T>
fun <T> mutableObjectListOf(capacity: Int): ObjectArrayList<T>
fun <T> mutableObjectListOf(iterable: Iterable<T>): ObjectArrayList<T>