Custom bitset implementation that allows using enumeration values as indices.
More...
template<
class TEnum>
requires std::is_enum_v<
TEnum>
class kouta::utils::EnumSet< TEnum >
Custom bitset implementation that allows using enumeration values as indices.
The used enumeration type used must:
- Derive from std::size_t
- Not set any value for the labels (optionally, value 0 can be set for the first one)
- Contain a
_Total
label at the end
The _Total
label is used to determine the number of values in the enumeration (by explicitly casting it to an std::size_t value).
enum class MyEnum : std::size_t
{
};
EnumSet<MyEnum>
set{MyEnum::A, MyEnum::C};
Custom bitset implementation that allows using enumeration values as indices.
Definition enum-set.hpp:46
EnumSet & set(EnumType pos, bool value=true)
Set the value of a specific bit.
Definition enum-set.hpp:118
bool test(EnumType pos) const
Access a specific bit.
Definition enum-set.hpp:105
- Template Parameters
-
TEnum | Enumeration type to use. |