Or() public method

Creates a new bitset that is the bitwise OR of this bitset with another
public Or ( IBitset otherSet ) : IBitset
otherSet IBitset Other bitset
return IBitset
Example #1
0
 public static RoaringBitset Or(RoaringBitset x1, RoaringBitset x2)
 {
     return((RoaringBitset)x1.Or(x2));
 }