Share via


CopyOnWriteArrayList.AddAll Method

Definition

Overloads

AddAll(ICollection)

Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.

AddAll(Int32, ICollection)

Inserts all of the elements in the specified collection into this list, starting at the specified position.

AddAll(ICollection)

Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.

[Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "GetAddAll_Ljava_util_Collection_Handler")]
public virtual bool AddAll (System.Collections.ICollection c);
[<Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "GetAddAll_Ljava_util_Collection_Handler")>]
abstract member AddAll : System.Collections.ICollection -> bool
override this.AddAll : System.Collections.ICollection -> bool

Parameters

c
ICollection

collection containing elements to be added to this list

Returns

true if this list changed as a result of the call

Implements

Attributes

Remarks

Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.

Java documentation for java.util.concurrent.CopyOnWriteArrayList.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

AddAll(Int32, ICollection)

Inserts all of the elements in the specified collection into this list, starting at the specified position.

[Android.Runtime.Register("addAll", "(ILjava/util/Collection;)Z", "GetAddAll_ILjava_util_Collection_Handler")]
public virtual bool AddAll (int index, System.Collections.ICollection c);
[<Android.Runtime.Register("addAll", "(ILjava/util/Collection;)Z", "GetAddAll_ILjava_util_Collection_Handler")>]
abstract member AddAll : int * System.Collections.ICollection -> bool
override this.AddAll : int * System.Collections.ICollection -> bool

Parameters

index
Int32

index at which to insert the first element from the specified collection

c
ICollection

collection containing elements to be added to this list

Returns

true if this list changed as a result of the call

Implements

Attributes

Remarks

Inserts all of the elements in the specified collection into this list, starting at the specified position. Shifts the element currently at that position (if any) and any subsequent elements to the right (increases their indices). The new elements will appear in this list in the order that they are returned by the specified collection's iterator.

Java documentation for java.util.concurrent.CopyOnWriteArrayList.addAll(int, 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