Share via


ArrayMap.ContainsAll(ICollection<Object>) Method

Definition

Determine if the array map contains all of the keys in the given collection.

[Android.Runtime.Register("containsAll", "(Ljava/util/Collection;)Z", "")]
public bool ContainsAll (System.Collections.Generic.ICollection<object>? collection);
[<Android.Runtime.Register("containsAll", "(Ljava/util/Collection;)Z", "")>]
member this.ContainsAll : System.Collections.Generic.ICollection<obj> -> bool

Parameters

collection
ICollection<Object>

The collection whose contents are to be checked against.

Returns

Returns true if this array map contains a key for every entry in <var>collection</var>, else returns false.

Attributes

Remarks

Determine if the array map contains all of the keys in the given collection.

Java documentation for android.util.ArrayMap.containsAll(java.util.Collection<?>).

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