public abstract class BitSets extends Object
Modifier and Type | Method and Description |
---|---|
static BitSet |
all(int limit) |
static BitSet |
and(BitSet... args) |
static BitSet |
andNot(BitSet arg1,
BitSet arg2)
Normally called "setMinus(..)".
|
static <D> void |
map(BitSet arg,
Function<Integer,D> fun) |
static BitSet |
not(BitSet arg) |
static BitSet |
or(BitSet... args) |
static BitSet |
singleton(int single) |
static int |
the(BitSet singleton) |
static BitSet |
xor(BitSet a1,
BitSet a2) |
see also the complete user documentation .