Regina 7.3 Calculation Engine
Public Types | Public Member Functions | Static Public Member Functions | List of all members
regina::Flags< T > Class Template Reference

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...
 

Detailed Description

template<typename T>
class regina::Flags< T >

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.

Python
Present only for some particular enumeration types T, when explicitly noted in the corresponding enum documentation. The enumeration type is typically the flag class name with the suffix Flags or Fields; for instance, the flags classes NormalAlg and SurfaceExport work with the enum types NormalAlgFlags and SurfaceExportFields respectively.

Member Typedef Documentation

◆ Enum

template<typename T >
using regina::Flags< T >::Enum = T

The underlying enumeration type.

Constructor & Destructor Documentation

◆ Flags() [1/3]

template<typename T >
regina::Flags< T >::Flags ( )
inline

Creates an empty flag set, with no flags set at all.

◆ Flags() [2/3]

template<typename T >
regina::Flags< T >::Flags ( init)
inline

Creates a flag set initialised to the given value.

Parameters
initthe initial value of this flag set.

◆ Flags() [3/3]

template<typename T >
regina::Flags< T >::Flags ( const Flags< T > &  init)
inlinedefault

Creates a clone of the given flag set.

Parameters
initthe flag set to clone.

Member Function Documentation

◆ clear() [1/2]

template<typename T >
void regina::Flags< T >::clear ( const Flags< T > &  rhs)
inline

Clears all bits from this set that appear in the given set.

Parameters
rhsidentifies the bits to clear from this set.

◆ clear() [2/2]

template<typename T >
void regina::Flags< T >::clear ( rhs)
inline

Clears all bits from this set that appear in the given flag.

Parameters
rhsthe flag to clear from this set.

◆ ensureOne() [1/3]

template<typename T >
void regina::Flags< T >::ensureOne ( default_,
other 
)
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.

Precondition
Both default_ and other are each single-bit flags.
Parameters
default_the flag that will be set if any adjustments need to be made.
otherthe flag that will be cleared if any adjustments need to be made.

◆ ensureOne() [2/3]

template<typename T >
void regina::Flags< T >::ensureOne ( default_,
second,
last 
)
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.

Precondition
Each of the given flags is single-bit.
Parameters
default_the highest-priority flag.
secondthe second-highest-priority flag.
lastthe lowest-priority flag.

◆ ensureOne() [3/3]

template<typename T >
void regina::Flags< T >::ensureOne ( default_,
second,
third,
last 
)
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.

Precondition
Each of the given flags is single-bit.
Parameters
default_the highest-priority flag.
secondthe second-highest-priority flag.
thirdthe third-highest-priority flag.
lastthe lowest-priority flag.

◆ fromInt()

template<typename T >
static Flags< T > regina::Flags< T >::fromInt ( int  value)
inlinestatic

Returns the set corresponding to the given integer value.

This is suitable for file input and/or output.

Warning
This function should not be used widely, since it effectively works around inbuilt type safety mechanisms.
Returns
the set corresponding to the given integer value.

◆ has() [1/2]

template<typename T >
bool regina::Flags< T >::has ( const Flags< T > &  rhs) const
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.

Parameters
rhsthe set whose presence will be tested.
Returns
true if and only if all of the bits of the given set are present in this set.

◆ has() [2/2]

template<typename T >
bool regina::Flags< T >::has ( flag) const
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.

Parameters
flagthe flag whose presence will be tested.
Returns
true if and only if all of the bits of the given flag are set.

◆ intValue()

template<typename T >
int regina::Flags< T >::intValue ( ) const
inline

Returns the integer representation of this set.

This is suitable for file input and/or output.

Warning
This function should not be used widely, since it effectively works around inbuilt type safety mechanisms.
Returns
the integer value of this set.

◆ operator!=() [1/2]

template<typename T >
bool regina::Flags< T >::operator!= ( const Flags< T > &  rhs) const
inline

Determines whether this set is not equal to the given flag set.

Parameters
rhsthe flag to test this against.
Returns
true if and only if this and the given flag set are not identical.

◆ operator!=() [2/2]

template<typename T >
bool regina::Flags< T >::operator!= ( rhs) const
inline

Determines whether this set is not equal to the given flag.

Parameters
rhsthe flag to test this against.
Returns
true if and only if this and the given flag are not identical.

◆ operator&() [1/2]

template<typename T >
Flags< T > regina::Flags< T >::operator& ( const Flags< T > &  rhs) const
inline

Returns the bitwise AND of this and the given flag set.

This flag set is not changed.

Parameters
rhsthe flag set to combine with this set.
Returns
the combination of this and the given flag set.

◆ operator&() [2/2]

template<typename T >
Flags< T > regina::Flags< T >::operator& ( rhs) const
inline

Returns the bitwise AND of this set and the given flag.

This flag set is not changed.

Parameters
rhsthe flag to combine with this set.
Returns
the combination of this set and the given flag.

◆ operator&=() [1/2]

template<typename T >
Flags< T > & regina::Flags< T >::operator&= ( const Flags< T > &  rhs)
inline

Changes this flag set by taking a bitwise AND with the given flag set.

Parameters
rhsthe flag set to combine with this set.
Returns
a reference to this flag set.

◆ operator&=() [2/2]

template<typename T >
Flags< T > & regina::Flags< T >::operator&= ( rhs)
inline

Changes this flag set by taking a bitwise AND with the given flag.

Parameters
rhsthe flag to combine with this set.
Returns
a reference to this flag set.

◆ operator=() [1/2]

template<typename T >
Flags< T > & regina::Flags< T >::operator= ( const Flags< T > &  rhs)
inlinedefault

Sets this flag set to contain a copy of the given flag set.

Parameters
rhsthe new value of this flag set.
Returns
a reference to this flag set.

◆ operator=() [2/2]

template<typename T >
Flags< T > & regina::Flags< T >::operator= ( rhs)
inline

Sets this flag set to contain precisely the given flag only.

Parameters
rhsthe new value of this flag set.
Returns
a reference to this flag set.

◆ operator==() [1/2]

template<typename T >
bool regina::Flags< T >::operator== ( const Flags< T > &  rhs) const
inline

Determines whether this set is precisely equal to the given flag set.

Parameters
rhsthe flag set to test this against.
Returns
true if and only if this and the given flag set are identical.

◆ operator==() [2/2]

template<typename T >
bool regina::Flags< T >::operator== ( rhs) const
inline

Determines whether this set is precisely equal to the given flag.

Parameters
rhsthe flag to test this against.
Returns
true if and only if this and the given flag are identical.

◆ operator^() [1/2]

template<typename T >
Flags< T > regina::Flags< T >::operator^ ( const Flags< T > &  rhs) const
inline

Returns the bitwise XOR of this and the given flag set.

This flag set is not changed.

Parameters
rhsthe flag set to combine with this set.
Returns
the combination of this and the given flag set.

◆ operator^() [2/2]

template<typename T >
Flags< T > regina::Flags< T >::operator^ ( rhs) const
inline

Returns the bitwise XOR of this set and the given flag.

This flag set is not changed.

Parameters
rhsthe flag to combine with this set.
Returns
the combination of this set and the given flag.

◆ operator^=() [1/2]

template<typename T >
Flags< T > & regina::Flags< T >::operator^= ( const Flags< T > &  rhs)
inline

Changes this flag set by taking a bitwise XOR with the given flag set.

Parameters
rhsthe flag set to combine with this set.
Returns
a reference to this flag set.

◆ operator^=() [2/2]

template<typename T >
Flags< T > & regina::Flags< T >::operator^= ( rhs)
inline

Changes this flag set by taking a bitwise XOR with the given flag.

Parameters
rhsthe flag to combine with this set.
Returns
a reference to this flag set.

◆ operator|() [1/2]

template<typename T >
Flags< T > regina::Flags< T >::operator| ( const Flags< T > &  rhs) const
inline

Returns the bitwise OR of this and the given flag set.

This flag set is not changed.

Parameters
rhsthe flag set to combine with this set.
Returns
the combination of this and the given flag set.

◆ operator|() [2/2]

template<typename T >
Flags< T > regina::Flags< T >::operator| ( rhs) const
inline

Returns the bitwise OR of this set and the given flag.

This flag set is not changed.

Parameters
rhsthe flag to combine with this set.
Returns
the combination of this set and the given flag.

◆ operator|=() [1/2]

template<typename T >
Flags< T > & regina::Flags< T >::operator|= ( const Flags< T > &  rhs)
inline

Changes this flag set by taking a bitwise OR with the given flag set.

Parameters
rhsthe flag set to combine with this set.
Returns
a reference to this flag set.

◆ operator|=() [2/2]

template<typename T >
Flags< T > & regina::Flags< T >::operator|= ( rhs)
inline

Changes this flag set by taking a bitwise OR with the given flag.

Parameters
rhsthe flag to combine with this set.
Returns
a reference to this flag set.

The documentation for this class was generated from the following file:

Copyright © 1999-2023, The Regina development team
This software is released under the GNU General Public License, with some additional permissions; see the source code for details.
For further information, or to submit a bug or other problem, please contact Ben Burton (bab@maths.uq.edu.au).