Regina 7.0 Calculation Engine
|
A class representing a bitwise combination of flags defined by an enumeration type. More...
#include <utilities/flags.h>
Public Types | |
using | Enum = T |
The underlying enumeration type. More... | |
Public Member Functions | |
Flags () | |
Creates an empty flag set, with no flags set at all. More... | |
Flags (T init) | |
Creates a flag set initialised to the given value. More... | |
Flags (const Flags< T > &init)=default | |
Creates a clone of the given flag set. More... | |
int | intValue () const |
Returns the integer representation of this set. More... | |
bool | has (T flag) const |
Returns whether the given flag is set. More... | |
bool | has (const Flags< T > &rhs) const |
Returns whether all of the flags in the given set are set. More... | |
bool | operator== (T rhs) const |
Determines whether this set is precisely equal to the given flag. More... | |
bool | operator== (const Flags< T > &rhs) const |
Determines whether this set is precisely equal to the given flag set. More... | |
bool | operator!= (T rhs) const |
Determines whether this set is not equal to the given flag. More... | |
bool | operator!= (const Flags< T > &rhs) const |
Determines whether this set is not equal to the given flag set. More... | |
Flags< T > & | operator= (T rhs) |
Sets this flag set to contain precisely the given flag only. More... | |
Flags< T > & | operator= (const Flags< T > &rhs)=default |
Sets this flag set to contain a copy of the given flag set. More... | |
Flags< T > & | operator|= (T rhs) |
Changes this flag set by taking a bitwise OR with the given flag. More... | |
Flags< T > & | operator|= (const Flags< T > &rhs) |
Changes this flag set by taking a bitwise OR with the given flag set. More... | |
Flags< T > & | operator&= (T rhs) |
Changes this flag set by taking a bitwise AND with the given flag. More... | |
Flags< T > & | operator&= (const Flags< T > &rhs) |
Changes this flag set by taking a bitwise AND with the given flag set. More... | |
Flags< T > & | operator^= (T rhs) |
Changes this flag set by taking a bitwise XOR with the given flag. More... | |
Flags< T > & | operator^= (const Flags< T > &rhs) |
Changes this flag set by taking a bitwise XOR with the given flag set. More... | |
Flags< T > | operator| (T rhs) const |
Returns the bitwise OR of this set and the given flag. More... | |
Flags< T > | operator| (const Flags< T > &rhs) const |
Returns the bitwise OR of this and the given flag set. More... | |
Flags< T > | operator& (T rhs) const |
Returns the bitwise AND of this set and the given flag. More... | |
Flags< T > | operator& (const Flags< T > &rhs) const |
Returns the bitwise AND of this and the given flag set. More... | |
Flags< T > | operator^ (T rhs) const |
Returns the bitwise XOR of this set and the given flag. More... | |
Flags< T > | operator^ (const Flags< T > &rhs) const |
Returns the bitwise XOR of this and the given flag set. More... | |
void | clear (T rhs) |
Clears all bits from this set that appear in the given flag. More... | |
void | clear (const Flags< T > &rhs) |
Clears all bits from this set that appear in the given set. More... | |
void | ensureOne (T default_, T other) |
Adjust this set so that exactly one and only one of the two given flags are included. More... | |
void | ensureOne (T default_, T second, T last) |
Adjust this set so that exactly one and only one of the three given flags are included. More... | |
void | ensureOne (T default_, T second, T third, T last) |
Adjust this set so that exactly one and only one of the four given flags are included. More... | |
Static Public Member Functions | |
static Flags< T > | fromInt (int value) |
Returns the set corresponding to the given integer value. More... | |
A class representing a bitwise combination of flags defined by an enumeration type.
The enumeration type is given in the template parameter T. This class allows the user to form and test bitwise combinations of the individual enum values, without losing type safety.
These objects are small enough to pass by value and swap with std::swap(), with no need for any specialised move operations or swap functions.
using regina::Flags< T >::Enum = T |
The underlying enumeration type.
|
inline |
Creates an empty flag set, with no flags set at all.
|
inline |
Creates a flag set initialised to the given value.
init | the initial value of this flag set. |
|
inlinedefault |
Creates a clone of the given flag set.
init | the flag set to clone. |
|
inline |
Clears all bits from this set that appear in the given set.
rhs | identifies the bits to clear from this set. |
|
inline |
Clears all bits from this set that appear in the given flag.
rhs | the flag to clear from this set. |
|
inline |
Adjust this set so that exactly one and only one of the two given flags are included.
If neither flag is present or both flags are present, this set will be adjusted so that default_ is present and other is not.
default_ | the flag that will be set if any adjustments need to be made. |
other | the flag that will be cleared if any adjustments need to be made. |
|
inline |
Adjust this set so that exactly one and only one of the three given flags are included.
If neither flag is present, then default_ will be used. If multiple flags are present, then the flag that appears earlier in the argument list for this routine will be used.
default_ | the highest-priority flag. |
second | the second-highest-priority flag. |
last | the lowest-priority flag. |
|
inline |
Adjust this set so that exactly one and only one of the four given flags are included.
If neither flag is present, then default_ will be used. If multiple flags are present, then the flag that appears earlier in the argument list for this routine will be used.
default_ | the highest-priority flag. |
second | the second-highest-priority flag. |
third | the third-highest-priority flag. |
last | the lowest-priority flag. |
|
inlinestatic |
Returns the set corresponding to the given integer value.
This is suitable for file input and/or output.
|
inline |
Returns whether all of the flags in the given set are set.
This requires all of the bits of all of the flags in the given set to be present in this set. The test is equivalent to (*this & rhs) == rhs
.
rhs | the set whose presence will be tested. |
true
if and only if all of the bits of the given set are present in this set.
|
inline |
Returns whether the given flag is set.
This requires all of the bits of the given flag to be set. The test is equivalent to (*this & flag) == flag
.
flag | the flag whose presence will be tested. |
true
if and only if all of the bits of the given flag are set.
|
inline |
Returns the integer representation of this set.
This is suitable for file input and/or output.
|
inline |
Determines whether this set is not equal to the given flag set.
rhs | the flag to test this against. |
true
if and only if this and the given flag set are not identical.
|
inline |
Determines whether this set is not equal to the given flag.
rhs | the flag to test this against. |
true
if and only if this and the given flag are not identical.
|
inline |
Returns the bitwise AND of this and the given flag set.
This flag set is not changed.
rhs | the flag set to combine with this set. |
|
inline |
Returns the bitwise AND of this set and the given flag.
This flag set is not changed.
rhs | the flag to combine with this set. |
|
inline |
Changes this flag set by taking a bitwise AND with the given flag set.
rhs | the flag set to combine with this set. |
|
inline |
Changes this flag set by taking a bitwise AND with the given flag.
rhs | the flag to combine with this set. |
|
inlinedefault |
Sets this flag set to contain a copy of the given flag set.
rhs | the new value of this flag set. |
|
inline |
Sets this flag set to contain precisely the given flag only.
rhs | the new value of this flag set. |
|
inline |
Determines whether this set is precisely equal to the given flag set.
rhs | the flag set to test this against. |
true
if and only if this and the given flag set are identical.
|
inline |
Determines whether this set is precisely equal to the given flag.
rhs | the flag to test this against. |
true
if and only if this and the given flag are identical.
|
inline |
Returns the bitwise XOR of this and the given flag set.
This flag set is not changed.
rhs | the flag set to combine with this set. |
|
inline |
Returns the bitwise XOR of this set and the given flag.
This flag set is not changed.
rhs | the flag to combine with this set. |
|
inline |
Changes this flag set by taking a bitwise XOR with the given flag set.
rhs | the flag set to combine with this set. |
|
inline |
Changes this flag set by taking a bitwise XOR with the given flag.
rhs | the flag to combine with this set. |
|
inline |
Returns the bitwise OR of this and the given flag set.
This flag set is not changed.
rhs | the flag set to combine with this set. |
|
inline |
Returns the bitwise OR of this set and the given flag.
This flag set is not changed.
rhs | the flag to combine with this set. |
|
inline |
Changes this flag set by taking a bitwise OR with the given flag set.
rhs | the flag set to combine with this set. |
|
inline |
Changes this flag set by taking a bitwise OR with the given flag.
rhs | the flag to combine with this set. |