BitSetBackedSelection |
BitSetBackedSelection.add(int... ints) |
Adds the given integers to the Selection if it is not already present, and does nothing
otherwise
|
BitSetBackedSelection |
BitSetBackedSelection.flip(int rangeStart,
int rangeEnd) |
Returns a selection with the bits from this selection flipped over the given range
|
BitSetBackedSelection |
BitSetBackedSelection.removeRange(long start,
long end) |
Removes from the current bitmap from all integers in [rangeStart,rangeEnd)
|
protected static BitSetBackedSelection |
BitSetBackedSelection.selectNRowsAtRandom(int n,
int max) |
Returns an randomly generated selection of size N where Max is the largest possible value
|
static BitSetBackedSelection |
BitSetBackedSelection.with(int... rows) |
Returns a Selection containing all indexes in the array
|
static BitSetBackedSelection |
BitSetBackedSelection.withRange(int start,
int end) |
Returns a Selection containing all indexes in the range start (inclusive) to end (exclusive),
|