floatListOf

Return

a read-only FloatList with nothing in it.


Return

a new read-only FloatList with element1 as the only item in the list.


fun floatListOf(element1: Float, element2: Float): FloatList(source)

Return

a new read-only FloatList with 2 elements, element1 and element2, in order.


fun floatListOf(element1: Float, element2: Float, element3: Float): FloatList(source)

Return

a new read-only FloatList with 3 elements, element1, element2, and element3, in order.


fun floatListOf(vararg elements: Float): FloatList(source)

Return

a new read-only FloatList with elements in order.