BitsetsNET.RoaringBitset.And C# (CSharp) Method

And() public method

Creates a new bitset that is the bitwise AND of this bitset with another
public And ( IBitset otherSet ) : IBitset
otherSet IBitset Other bitset
return IBitset
        public IBitset And(IBitset otherSet)
        {
            if (otherSet is RoaringBitset)
            {
                return And(this, (RoaringBitset)otherSet);
            }
            throw new ArgumentOutOfRangeException("otherSet must be a RoaringBitset");
        }

Same methods

RoaringBitset::And ( RoaringBitset x1, RoaringBitset x2 ) : RoaringBitset