Uses of Class
cern.colt.bitvector.BitVector
Packages that use BitVector
Package
Description
Bit vectors and bit matrices.
Resizable lists holding objects or primitive data types such as int,
double, etc.
-
Uses of BitVector in cern.colt.bitvector
Methods in cern.colt.bitvector that return BitVectorModifier and TypeMethodDescriptionBitVector.copy()
Returns a deep copy of the receiver; callsclone()
and casts the result.BitVector.partFromTo
(int from, int to) Constructs and returns a new bit vector which is a copy of the given range.BitMatrix.toBitVector()
Converts the receiver to a bitvector.Methods in cern.colt.bitvector with parameters of type BitVectorModifier and TypeMethodDescriptionvoid
Performs a logical AND of the receiver with another bit vector (A = A invalid input: '&' B).void
Clears all of the bits in receiver whose corresponding bit is set in the other bitvector (A = A \ B).protected void
Sanity check for operations requiring another bitvector with at least the same size.void
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
Performs a logical XOR of the receiver with another bit vector (A = A ^ B). -
Uses of BitVector in cern.colt.list
Methods in cern.colt.list that return BitVectorModifier and TypeMethodDescriptionMinMaxNumberList.toBitVector()
Returns the receiver seen as bitvector.Methods in cern.colt.list with parameters of type BitVectorModifier and TypeMethodDescriptionvoid
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.