BitsetsNET.UncompressedBitArray.AndWith C# (CSharp) Method

AndWith() public method

Performs an in-place intersection of two Roaring Bitsets.
public AndWith ( IBitset otherSet ) : void
otherSet IBitset the second Roaring Bitset to intersect
return void
        public void AndWith(IBitset otherSet)
        {
            array = array.And(((UncompressedBitArray)otherSet).array);
        }