BitsetsNET.UncompressedBitArray.Flip C# (CSharp) Method

Flip() public method

If the given index is not in the set add it, otherwise remove it.
public Flip ( int index ) : void
index int the index to flip
return void
        public void Flip(int index)
        {
            array[index] = !array[index];
        }

Same methods

UncompressedBitArray::Flip ( int start, int end ) : void