addAll

open fun <T, C : Collection<out Any>?> addAll(t1: C, t2: Iterable<out T>): C

Utility for adding an iterable to a collection.

Return

t1

Parameters

t1

The collection to add to

t2

The iterable to add each item of to the collection

<T>

The element type of t1


open fun <T, C : Collection<out Any>?> addAll(t1: C, t2: Array<T>): C

Utility for adding an array to a collection.

Return

t1

Parameters

t1

The collection to add to

t2

The iterable to add each item of to the collection

<T>

The element type of t1