BitsetsNET.UncompressedBitArray.Or C# (CSharp) Method

Or() public method

Creates a new bitset that is the bitwise OR of this bitset with another bitset.
public Or ( IBitset otherSet ) : IBitset
otherSet IBitset Other bitset
return IBitset
        public IBitset Or(IBitset otherSet)
        {
            IBitset result = this.Clone();
            result.OrWith(otherSet);
            return result;
        }