template<typename _, bool def>
class cosmos::NamedBool< _, def >
Strong template type to wrap boolean values in a named type.
This type is intended as a replacement for primitive bool values for constructor and function arguments. The purpose is to increase readability and avoid programming mistakes by passing a bool value for something else than intended.
Since right now there is no named parameter passing in C++ like MyObj(do_this=true)
one can use a specialization of this template type: MyObj(DoThis(true))
.
To use it you need to define an arbitrary tag type and the default boolean value to apply like:
using MySetting = NamedBool<struct my_setting_t, true>;
void myfunc(const MySetting setting = MySetting());
// will be called with a true default value
myfunc();
// will be called with a false value
myfunc(MySetting(false));
By providing the bool cast operator the type will behave like a regular bool when querying its value.
Definition at line 50 of file utils.hxx.