mutableIntListOf

Return

a new empty MutableIntList with the default capacity.


Return

a new MutableIntList with element1 as the only item in the list.


fun mutableIntListOf(element1: Int, element2: Int): MutableIntList(source)

Return

a new MutableIntList with 2 elements, element1 and element2, in order.


fun mutableIntListOf(element1: Int, element2: Int, element3: Int): MutableIntList(source)

Return

a new MutableIntList with 3 elements, element1, element2, and element3, in order.


inline fun mutableIntListOf(vararg elements: Int): MutableIntList(source)

Return

a new MutableIntList with the given elements, in order.