|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BitVector | |
---|---|
org.apache.mahout.math.bitvector | Bit vectors and bit matrices. |
Uses of BitVector in org.apache.mahout.math.bitvector |
---|
Methods in org.apache.mahout.math.bitvector that return BitVector | |
---|---|
BitVector |
BitVector.copy()
Deprecated. Returns a deep copy of the receiver; calls clone() and casts the result. |
BitVector |
BitVector.partFromTo(int from,
int to)
Deprecated. Constructs and returns a new bit vector which is a copy of the given range. |
BitVector |
BitMatrix.toBitVector()
Deprecated. Converts the receiver to a bitvector. |
Methods in org.apache.mahout.math.bitvector with parameters of type BitVector | |
---|---|
void |
BitVector.and(BitVector other)
Deprecated. Performs a logical AND of the receiver with another bit vector (A = A & B). |
void |
BitVector.andNot(BitVector other)
Deprecated. Clears all of the bits in receiver whose corresponding bit is set in the other bitvector (A = A \ B). |
protected void |
BitVector.checkSize(BitVector other)
Deprecated. Sanity check for operations requiring another bitvector with at least the same size. |
void |
BitVector.or(BitVector other)
Deprecated. 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)
Deprecated. Replaces the bits of the receiver in the given range with the bits of another bit vector. |
void |
BitVector.xor(BitVector other)
Deprecated. Performs a logical XOR of the receiver with another bit vector (A = A ^ B). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |