addAll

fun addAll(index: Int, elements: DoubleArray): Boolean(source)

Adds all elements to the MutableDoubleList at the given index, shifting over any elements at index and after, if any.

Return

true if the MutableDoubleList was changed or false if elements was empty

Throws

if index isn't between 0 and size, inclusive.


fun addAll(index: Int, elements: DoubleList): Boolean(source)

Adds all elements to the MutableDoubleList at the given index, shifting over any elements at index and after, if any.

Return

true if the MutableDoubleList was changed or false if elements was empty

Throws

if index isn't between 0 and size, inclusive


inline fun addAll(elements: DoubleList): Boolean(source)
inline fun addAll(elements: DoubleArray): Boolean(source)
inline fun addAll(elements: List<Double>): Boolean(source)

Adds all elements to the end of the MutableDoubleList and returns true if the MutableDoubleList was changed or false if elements was empty.