ArraySet.ContainsAll(ICollection) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determine if the array set contains all of the values in the given collection.
[Android.Runtime.Register("containsAll", "(Ljava/util/Collection;)Z", "", ApiSince=23)]
public bool ContainsAll (System.Collections.ICollection? collection);
[<Android.Runtime.Register("containsAll", "(Ljava/util/Collection;)Z", "", ApiSince=23)>]
abstract member ContainsAll : System.Collections.ICollection -> bool
override this.ContainsAll : System.Collections.ICollection -> bool
Parameters
- collection
- ICollection
The collection whose contents are to be checked against.
Returns
Returns true if this array set contains a value for every entry in <var>collection</var>, else returns false.
Implements
- Attributes
Remarks
Determine if the array set contains all of the values in the given collection.
Java documentation for android.util.ArraySet.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.