Performs a bitwise OR with another BitSet, modifying this BitSet in place.
Example:
var a = new BitSet (8);
a.set (0);
var b = new BitSet (8);
b.set (1);
a.or (b);
assert (a.get (0));
assert (a.get (1));
| other |
the other BitSet. |