BitsetsNET.UncompressedBitArray.OrWith C# (CSharp) Method

OrWith() public method

Computes the in-place bitwise OR of this bitset with another bitset.
public OrWith ( IBitset otherSet ) : void
otherSet IBitset Other bitset
return void
        public void OrWith(IBitset otherSet)
        {
            array = array.Or(((UncompressedBitArray)otherSet).array);
        }