doubleListOf

Return

a read-only DoubleList with nothing in it.


Return

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


fun doubleListOf(element1: Double, element2: Double): DoubleList(source)

Return

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


fun doubleListOf(element1: Double, element2: Double, element3: Double): DoubleList(source)

Return

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


fun doubleListOf(vararg elements: Double): DoubleList(source)

Return

a new read-only DoubleList with elements in order.