Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
|
Class extending the bitset class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. More...
#include <bitset.hpp>
Public Member Functions | |
bitset ()=default | |
bitset (const bitset &other)=default | |
bitset (bitset &&other)=default | |
bitset & | operator= (bitset &&other)=default |
bitset & | operator= (const bitset &other)=default |
std::strong_ordering | operator<=> (const ext::bitset< N > &second) const |
bool | operator== (const ext::bitset< N > &second) const |
Class extending the bitset class from the standard library. Original reason is to allow printing of the container with overloaded operator <<.
The class mimics the behavior of the bitset from the standatd library.
N | the size of the bitset |
|
default |
Default constructor needed by g++ since it is not inherited
|
default |
Copy constructor needed by g++ since it is not inherited
|
default |
Move constructor needed by g++ since it is not inherited
|
inline |
|
default |
Copy operator = needed by g++ since it is not inherited
|
default |
Move operator = needed by g++ since it is not inherited
|
inline |