BitSet.Intersects(BitSet) 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.
Returns true if the specified BitSet
has any bits set to
true
that are also set to true
in this BitSet
.
[Android.Runtime.Register("intersects", "(Ljava/util/BitSet;)Z", "GetIntersects_Ljava_util_BitSet_Handler")]
public virtual bool Intersects (Java.Util.BitSet? set);
[<Android.Runtime.Register("intersects", "(Ljava/util/BitSet;)Z", "GetIntersects_Ljava_util_BitSet_Handler")>]
abstract member Intersects : Java.Util.BitSet -> bool
override this.Intersects : Java.Util.BitSet -> bool
Parameters
- set
- BitSet
BitSet
to intersect with
Returns
boolean indicating whether this BitSet
intersects
the specified BitSet
- Attributes
Remarks
Java documentation for java.util.BitSet.intersects(java.util.BitSet)
.
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.