Regina Calculation Engine
|
Provides optimised "base 4 bitmasks" of fixed length. More...
Classes | |
class | regina::NQitmask1< T > |
A small but extremely fast "base 4 bitmask" class that can store up to 8 * sizeof(T) "qits", each equal to 0, 1, 2 or 3. More... | |
class | regina::NQitmask2< T, U > |
A small but extremely fast "base 4 bitmask" class that can store up to 8 * sizeof(T) + 8 * sizeof(U) "qits", each equal to 0, 1, 2 or 3. More... | |
Namespaces | |
regina | |
Contains the entire Regina calculation engine. | |
Typedefs | |
typedef NQitmask1< unsigned char > | regina::NQitmaskLen8 |
A convenience typedef that gives a small and extremely fast qitmask class capable of holding at least 8 true-or-false bits. More... | |
typedef NQitmask1< unsigned int > | regina::NQitmaskLen16 |
A convenience typedef that gives a small and extremely fast qitmask class capable of holding at least 16 true-or-false bits. More... | |
typedef InternalQitmaskLen32::Type | regina::NQitmaskLen32 |
A convenience typedef that gives a small and extremely fast qitmask class capable of holding at least 32 true-or-false bits. More... | |
typedef InternalQitmaskLen64::Type | regina::NQitmaskLen64 |
A convenience typedef that gives a small and extremely fast qitmask class capable of holding at least 64 true-or-false bits. More... | |
Functions | |
template<typename T > | |
std::ostream & | regina::operator<< (std::ostream &out, const NQitmask1< T > &mask) |
Writes the given qitmask to the given output stream as a sequence of digits (0, 1, 2 and/or 3). More... | |
template<typename T , typename U > | |
std::ostream & | regina::operator<< (std::ostream &out, const NQitmask2< T, U > &mask) |
Writes the given qitmask to the given output stream as a sequence of digits (0, 1, 2 and/or 3). More... | |
Provides optimised "base 4 bitmasks" of fixed length.