Or() 공개 메소드

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