mutableDoubleListOf

Return

a new empty MutableDoubleList with the default capacity.


Return

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


Return

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


fun mutableDoubleListOf(element1: Double, element2: Double, element3: Double): MutableDoubleList(source)

Return

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


inline fun mutableDoubleListOf(vararg elements: Double): MutableDoubleList(source)

Return

a new MutableDoubleList with the given elements, in order.