BitsetsNET.UncompressedBitArray.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)
        {
            IBitset result = this.Clone();
            result.AndWith(otherSet);
            return result;
        }