mutableFloatListOf

Return

a new empty MutableFloatList with the default capacity.


Return

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


Return

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


fun mutableFloatListOf(element1: Float, element2: Float, element3: Float): MutableFloatList(source)

Return

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


inline fun mutableFloatListOf(vararg elements: Float): MutableFloatList(source)

Return

a new MutableFloatList with the given elements, in order.