Flow123d
jenkins-Flow123d-windows32-release-multijob-51
|
std::bitset with generalized mask mechanism. More...
#include <flag_array.hh>
Classes | |
class | Mask |
Public Member Functions | |
FlagArray () | |
Default constructor turns all flags off. More... | |
FlagArray (Mask mask) | |
Conversion from the mask. More... | |
constexpr bool | match (Mask mask) const |
FlagArray & | add (Mask mask) |
Static Public Attributes | |
static const unsigned int | size = Size |
Allocated size of flags storage. More... | |
static constexpr Mask | all_true_mask =Mask(~BitField(0), ~BitField(0)) |
static constexpr Mask | all_false_mask =Mask(~BitField(0), BitField(0)) |
static constexpr Mask | none_mask =Mask(0, 0) |
Private Types | |
typedef unsigned int | BitField |
Declaration of internal bitfield type. More... | |
Private Attributes | |
BitField | flags_ |
flags storage More... | |
Friends | |
constexpr bool | operator== (FlagArray left, FlagArray right) |
bool | operator!= (FlagArray left, FlagArray right) |
std::ostream & | operator<< (std::ostream &s, const FlagArray &f) |
std::bitset with generalized mask mechanism.
The drawback of classical bitfield technique implemented e.g. in std::bitset<> is problematic work (set and test) with more bits then one at time. This class is simple wrapper for std::bitset<> that provides public class FlagArray<..>::Mask that represents some bit subset together with a reference value which can be used to set the bit subset or to test the bit subset.
The class is meant to be used in several other classes, that can define their specific masks. Every class using the FlagArray should provide specific Tag
template parameter in order to guarantee Mask - FlagArray compatibility.
Implementation note: since std::bitset do not have constexpr operators (may be in c++1y) we currently use just unsigned int in our implementation.
Usage:
Definition at line 38 of file flag_array.hh.
Declaration of internal bitfield type.
Definition at line 42 of file flag_array.hh.
Default constructor turns all flags off.
Definition at line 129 of file flag_array.hh.
Conversion from the mask.
Definition at line 134 of file flag_array.hh.
Apply the mask to the flags. Bits by the mask.mask_
are overwritten by the mask.set_
values.
Definition at line 160 of file flag_array.hh.
|
inline |
The FlagArray match a mask if and only if bits given by the mask.mask_
are same in both the flags_ and mask.set_.
Definition at line 153 of file flag_array.hh.
|
friend |
Definition at line 144 of file flag_array.hh.
|
friend |
Definition at line 163 of file flag_array.hh.
|
friend |
Definition at line 140 of file flag_array.hh.
|
static |
Definition at line 122 of file flag_array.hh.
|
static |
Definition at line 121 of file flag_array.hh.
flags storage
Definition at line 169 of file flag_array.hh.
|
static |
Definition at line 123 of file flag_array.hh.
|
static |
Allocated size of flags storage.
Definition at line 119 of file flag_array.hh.