Language

ArraySet.AddAll Method

Definition

Overloads

Name Description
AddAll(ArraySet)

Perform a #add(Object) of all values in <var>array</var>

AddAll(ICollection)

Perform an #add(Object) of all values in <var>collection</var>

AddAll(ArraySet)

Perform a #add(Object) of all values in <var>array</var>

[Android.Runtime.Register("addAll", "(Landroid/util/ArraySet;)V", "", ApiSince=23)]
public void AddAll(Android.Util.ArraySet? array);
[<Android.Runtime.Register("addAll", "(Landroid/util/ArraySet;)V", "", ApiSince=23)>]
member this.AddAll : Android.Util.ArraySet -> unit

Parameters

array
ArraySet

The array whose contents are to be retrieved.

Attributes

Remarks

Perform a #add(Object) of all values in <var>array</var>

Java documentation for android.util.ArraySet.addAll(android.util.ArraySet<? extends E>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

AddAll(ICollection)

Perform an #add(Object) of all values in <var>collection</var>

[Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "", ApiSince=23)]
public bool AddAll(System.Collections.ICollection? collection);
[<Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "", ApiSince=23)>]
abstract member AddAll : System.Collections.ICollection -> bool
override this.AddAll : System.Collections.ICollection -> bool

Parameters

collection
ICollection

The collection whose contents are to be retrieved.

Returns

true if this collection changed as a result of the call

Implements

Attributes

Remarks

Perform an #add(Object) of all values in <var>collection</var>

Java documentation for android.util.ArraySet.addAll(java.util.Collection<? extends E>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to