UnicodeSet.ContainsAll 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.
Overloads
ContainsAll(UnicodeSet) |
Returns true if this set contains all the characters and strings of the given set. |
ContainsAll(IIterable) | |
ContainsAll(String) |
Returns true if there is a partition of the string such that this set contains each of the partitioned strings. |
ContainsAll(UnicodeSet)
Returns true if this set contains all the characters and strings of the given set.
[Android.Runtime.Register("containsAll", "(Landroid/icu/text/UnicodeSet;)Z", "GetContainsAll_Landroid_icu_text_UnicodeSet_Handler", ApiSince=24)]
public virtual bool ContainsAll (Android.Icu.Text.UnicodeSet? b);
[<Android.Runtime.Register("containsAll", "(Landroid/icu/text/UnicodeSet;)Z", "GetContainsAll_Landroid_icu_text_UnicodeSet_Handler", ApiSince=24)>]
abstract member ContainsAll : Android.Icu.Text.UnicodeSet -> bool
override this.ContainsAll : Android.Icu.Text.UnicodeSet -> bool
Parameters
set to be checked for containment
Returns
true if the test condition is met
- Attributes
Remarks
Returns true if this set contains all the characters and strings of the given set.
Java documentation for android.icu.text.UnicodeSet.containsAll(android.icu.text.UnicodeSet)
.
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
ContainsAll(IIterable)
[Android.Runtime.Register("containsAll", "(Ljava/lang/Iterable;)Z", "GetContainsAll_Ljava_lang_Iterable_Handler", ApiSince=24)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T extends java.lang.CharSequence" })]
public virtual bool ContainsAll (Java.Lang.IIterable? collection);
[<Android.Runtime.Register("containsAll", "(Ljava/lang/Iterable;)Z", "GetContainsAll_Ljava_lang_Iterable_Handler", ApiSince=24)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T extends java.lang.CharSequence" })>]
abstract member ContainsAll : Java.Lang.IIterable -> bool
override this.ContainsAll : Java.Lang.IIterable -> bool
Parameters
- collection
- IIterable
Returns
- Attributes
Remarks
Java documentation for android.icu.text.UnicodeSet.containsAll(java.lang.Iterable<T>)
.
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
ContainsAll(String)
Returns true if there is a partition of the string such that this set contains each of the partitioned strings.
[Android.Runtime.Register("containsAll", "(Ljava/lang/String;)Z", "GetContainsAll_Ljava_lang_String_Handler", ApiSince=24)]
public virtual bool ContainsAll (string? s);
[<Android.Runtime.Register("containsAll", "(Ljava/lang/String;)Z", "GetContainsAll_Ljava_lang_String_Handler", ApiSince=24)>]
abstract member ContainsAll : string -> bool
override this.ContainsAll : string -> bool
Parameters
- s
- String
string containing characters to be checked for containment
Returns
true if the test condition is met
- Attributes
Remarks
Returns true if there is a partition of the string such that this set contains each of the partitioned strings. For example, for the Unicode set [a{bc}{cd}]<br> containsAll is true for each of: "a", "bc", ""cdbca"<br> containsAll is false for each of: "acb", "bcda", "bcx"<br>
Java documentation for android.icu.text.UnicodeSet.containsAll(java.lang.String)
.
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.