BitsetsNET.UncompressedBitArray.Not C# (CSharp) Method

Not() public method

Returns a new bitset that consists of all elements that are not in this bitset.
public Not ( ) : IBitset
return IBitset
        public IBitset Not()
        {
            var newSet = new UncompressedBitArray();
            newSet.array = array.Not();

            return newSet;
        }