|
casacore
|
#include <BitVector.h>
Public Member Functions | |
| BitVector () | |
| Create a bit vector of length 0. | |
| BitVector (uInt length, Bool state) | |
| Create a bit vector with length bits and set all bits to to the specified state. | |
| BitVector (const BitVector &that) | |
| Copy constructor (copy semantics). | |
| ~BitVector () | |
| Delete the bit vector. | |
| BitVector & | operator= (const BitVector &that) |
| Assignment (copy semantics). | |
| BitVector & | operator= (Bool state) |
| Set all bits to the given state. | |
| uInt | nbits () const |
| Return the number of bits in the bitvector. | |
| void | setBit (uInt pos) |
| Set a bit at the given position (0-relative). | |
| void | clearBit (uInt pos) |
| Clear a bit at the given position (0-relative). | |
| Bool | toggleBit (uInt pos) |
| Toggle a bit at the given position (0-relative). | |
| Bool | getBit (uInt pos) const |
| Get a bit at the given position (0-relative). | |
| void | putBit (uInt pos, Bool state) |
| Set a bit at the given position (0-relative) to the given state. | |
| Bool | operator[] (uInt pos) const |
| Index operator to access the specified bit. | |
| BitVectorHelper | operator[] (uInt pos) |
| BitVector | operator& (const BitVector &that) const |
| Logical operations on whole bit vectors. | |
| BitVector | operator| (const BitVector &that) const |
| BitVector | operator^ (const BitVector &that) const |
| BitVector | operator~ () const |
| void | operator&= (const BitVector &that) |
| Logical in-place operations on whole bit vectors. | |
| void | operator|= (const BitVector &that) |
| void | operator^= (const BitVector &that) |
| void | reverse () |
| Bool | operator== (const BitVector &that) const |
| Returns True if all bits are equal. | |
| Bool | operator!= (const BitVector &that) const |
| Returns True if a bit differs. | |
| void | resize (uInt length, Bool state=False, Bool copy=True) |
| Resize the bit vector to the new length. | |
| void | set (Bool state) |
| Set all bits of the bit vector to the specified state. | |
| void | set (uInt start, uInt length, Bool state) |
| Set length bits starting at the start position (0-relative) to the given state. | |
| void | copy (uInt thisStart, uInt length, const BitVector &that, uInt thatStart) |
| Copy length bits starting at thatStart in the other BitVector to this BitVector starting at thisStart. | |
Private Attributes | |
| uInt | size_p |
| Number of bits in the BitVector object. | |
| Block< uInt > | bits_p |
| Pointer to the actual bit vector, stored as a contiguous sequence of one or more unsigned integers. | |
Friends | |
| class | BitVectorHelper |
| BitVectorHelper is a helper class. | |
| ostream & | operator<< (ostream &, const BitVector &vector) |
| Write a representation of the bit vector (a list of zeros and ones enclosed in square parentheses) to ostream. | |
Bit vectors of any size
Public interface
A variable utilized as a discrete collection of bits is referred to as a bit vector.
Bit vectors are an efficent method of keeping True/False information on a set of items or conditions. Class BitVector provides functions to manipulate individual bits in the vector and to perform logical operations on whole bit vectors.
Definition at line 110 of file BitVector.h.
| casacore::BitVector::BitVector | ( | ) |
Create a bit vector of length 0.
Referenced by BitVector(), copy(), operator!=(), operator&(), operator&=(), operator<<, operator=(), operator=(), operator==(), operator^(), operator^=(), operator|(), operator|=(), and operator~().
Create a bit vector with length bits and set all bits to to the specified state.
References casacore::length().
| casacore::BitVector::BitVector | ( | const BitVector & | that | ) |
Copy constructor (copy semantics).
References BitVector().
| casacore::BitVector::~BitVector | ( | ) |
Delete the bit vector.
|
inline |
Clear a bit at the given position (0-relative).
In debug-mode an exception is thrown when the position is invalid.
Definition at line 288 of file BitVector.h.
References bits_p, DebugAssert, size_p, and casacore::WORDSIZE.
| void casacore::BitVector::copy | ( | uInt | thisStart, |
| uInt | length, | ||
| const BitVector & | that, | ||
| uInt | thatStart ) |
Copy length bits starting at thatStart in the other BitVector to this BitVector starting at thisStart.
References BitVector(), and casacore::length().
Referenced by resize().
Get a bit at the given position (0-relative).
In debug-mode an exception is thrown when the position is invalid.
Referenced by operator[]().
|
inline |
Return the number of bits in the bitvector.
Definition at line 300 of file BitVector.h.
References size_p.
Returns True if a bit differs.
An exception is thrown if the lengths of the vectors differ.
References BitVector().
Logical operations on whole bit vectors.
The binary operators & (bitwise AND), | (bitwise OR) and ^ (bitwise XOR), and the unary operator ~ (bitwise NOT) are provided. An exception is thrown if the lengths of the vectors differ.
References BitVector().
| void casacore::BitVector::operator&= | ( | const BitVector & | that | ) |
Logical in-place operations on whole bit vectors.
The binary operators & (bitwise AND), | (bitwise OR) and ^ (bitwise XOR), and the unary operator reverse (bitwise NOT) are provided. An exception is thrown if the lengths of the vectors differ.
References BitVector().
Set all bits to the given state.
References BitVector().
Assignment (copy semantics).
References BitVector().
Returns True if all bits are equal.
An exception is thrown if the lengths of the vectors differ.
References BitVector().
|
inline |
Definition at line 311 of file BitVector.h.
References BitVectorHelper.
Index operator to access the specified bit.
In debug-mode an exception is thrown when the position is invalid.
Definition at line 295 of file BitVector.h.
References getBit().
References BitVector().
| void casacore::BitVector::operator^= | ( | const BitVector & | that | ) |
References BitVector().
References BitVector().
| void casacore::BitVector::operator|= | ( | const BitVector & | that | ) |
References BitVector().
| BitVector casacore::BitVector::operator~ | ( | ) | const |
References BitVector().
Set a bit at the given position (0-relative) to the given state.
In debug-mode an exception is thrown when the position is invalid.
References BitVectorHelper.
Resize the bit vector to the new length.
By default the original bits are copied. The remaining bits (or all bits in case of no copy) are set the the given state.
References copy(), casacore::False, casacore::length(), and casacore::True.
| void casacore::BitVector::reverse | ( | ) |
| void casacore::BitVector::set | ( | Bool | state | ) |
Set all bits of the bit vector to the specified state.
Set length bits starting at the start position (0-relative) to the given state.
An exception is thrown if start+length exceeds the length of the vector.
References casacore::length().
|
inline |
Set a bit at the given position (0-relative).
In debug-mode an exception is thrown when the position is invalid.
Definition at line 281 of file BitVector.h.
References bits_p, DebugAssert, size_p, and casacore::WORDSIZE.
Toggle a bit at the given position (0-relative).
It returns the original state. In debug-mode an exception is thrown when the position is invalid.
|
friend |
BitVectorHelper is a helper class.
Definition at line 114 of file BitVector.h.
References BitVectorHelper.
Referenced by BitVectorHelper, operator[](), and putBit().
|
friend |
Write a representation of the bit vector (a list of zeros and ones enclosed in square parentheses) to ostream.
References BitVector().
Pointer to the actual bit vector, stored as a contiguous sequence of one or more unsigned integers.
Definition at line 229 of file BitVector.h.
Referenced by clearBit(), and setBit().
|
private |
Number of bits in the BitVector object.
Definition at line 225 of file BitVector.h.
Referenced by clearBit(), nbits(), and setBit().