|
Parallel Colt 0.9.4 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BitVector | |
---|---|
cern.colt.list.tlong | Resizable list holding elements of long data type. |
cern.colt.matrix.tbit | Bit vectors and bit matrices. |
Uses of BitVector in cern.colt.list.tlong |
---|
Methods in cern.colt.list.tlong that return BitVector | |
---|---|
BitVector |
MinMaxNumberList.toBitVector()
Returns the receiver seen as bitvector. |
Methods in cern.colt.list.tlong with parameters of type BitVector | |
---|---|
void |
MinMaxNumberList.partFromTo(int from,
int to,
BitVector qualificants,
int qualificantsFrom,
long[] part,
int partFrom)
Copies all elements between index from (inclusive) and to (inclusive) into part, starting at index partFrom within part. |
Uses of BitVector in cern.colt.matrix.tbit |
---|
Methods in cern.colt.matrix.tbit that return BitVector | |
---|---|
BitVector |
BitVector.copy()
Returns a deep copy of the receiver; calls clone() and casts
the result. |
BitVector |
BitVector.partFromTo(int from,
int to)
Constructs and returns a new bit vector which is a copy of the given range. |
BitVector |
BitMatrix.toBitVector()
Converts the receiver to a bitvector. |
Methods in cern.colt.matrix.tbit with parameters of type BitVector | |
---|---|
void |
BitVector.and(BitVector other)
Performs a logical AND of the receiver with another bit vector (A = A & B). |
void |
BitVector.andNot(BitVector other)
Clears all of the bits in receiver whose corresponding bit is set in the other bitvector (A = A \ B). |
void |
BitVector.or(BitVector other)
Performs a logical OR of the receiver with another bit vector (A = A | B). |
void |
BitVector.replaceFromToWith(int from,
int to,
BitVector source,
int sourceFrom)
Replaces the bits of the receiver in the given range with the bits of another bit vector. |
void |
BitVector.xor(BitVector other)
Performs a logical XOR of the receiver with another bit vector (A = A ^ B). |
|
Parallel Colt 0.9.4 | |||||||||
PREV NEXT | FRAMES NO FRAMES |