EwahCompressedBitArrayIntersects Method |
Return true if the two EwahCompressedBitArray have both at least one
true bit in the same Position. Equivalently, you could call "And"
and check whether there is a set bit, but intersects will run faster
if you don't need the result of the "and" operation.
Namespace:
VelocityDBExtensions.CompressedBitArray
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntax public bool Intersects(
EwahCompressedBitArray a
)
Public Function Intersects (
a As EwahCompressedBitArray
) As Boolean
public:
bool Intersects(
EwahCompressedBitArray^ a
)
member Intersects :
a : EwahCompressedBitArray -> bool
Parameters
- a
- Type: VelocityDBExtensions.CompressedBitArrayEwahCompressedBitArray
[Missing <param name="a"/> documentation for "M:VelocityDBExtensions.CompressedBitArray.EwahCompressedBitArray.Intersects(VelocityDBExtensions.CompressedBitArray.EwahCompressedBitArray)"]
Return Value
Type:
Boolean[Missing <returns> documentation for "M:VelocityDBExtensions.CompressedBitArray.EwahCompressedBitArray.Intersects(VelocityDBExtensions.CompressedBitArray.EwahCompressedBitArray)"]
See Also