49template <
typename _,
bool def>
55 operator bool()
const {
return m_val; }
74 using CleanFunc = void (R);
92 void disarm() { m_disarmed =
true; }
96 bool m_disarmed =
false;
98 std::function<CleanFunc> m_cleaner;
105using IdentityT =
typename Identity<T>::type;
110template <
typename T1>
111bool in_range(
const T1 &v,
const IdentityT<T1> &_min,
const IdentityT<T1> &_max) {
112 return _min <= v && v <= _max;
117bool in_list(
const T &v,
const std::initializer_list<T> &l) {
118 for (
const auto &cmp: l) {
129 return sizeof(v) /
sizeof(v[0]);
133template <
typename T1,
typename T2>
135 v1.insert(std::end(v1), std::begin(v2), std::end(v2));
140template<
typename ENUM>
141constexpr auto to_integral(
const ENUM e) ->
typename std::underlying_type<ENUM>::type {
142 return static_cast<typename std::underlying_type<ENUM>::type
>(e);
146template<
typename ENUM>
148 using UT =
typename std::underlying_type<ENUM>::type;
149 return reinterpret_cast<UT*
>(e);
152template <
typename VARIANT>
153bool is_empty_variant(
const VARIANT &var) {
154 return std::holds_alternative<std::monostate>(var);
157template <
typename VARIANT>
158bool variant_holds_value(
const VARIANT &var) {
159 return !is_empty_variant(var);
188 return m_iterations == o.m_iterations;
192 return !(*
this == o);
196 size_t m_iterations = 0;
203inline TwiceIterator end(Twice &) {
204 return TwiceIterator{2};
211inline std::ostream&
operator<<(std::ostream &o,
const std::vector<T> &sv) {
212 for (
auto it = sv.begin(); it != sv.end(); it++) {
213 if (it != sv.begin())
222template <
typename K,
typename V>
223inline std::ostream&
operator<<(std::ostream &o,
const std::map<K,V> &m) {
225 o << it.first <<
": " << it.second <<
"\n";
Strong template type to wrap boolean values in a named type.
Helper class to guard arbitrary resources.
Helper for iterating twice over a for loop.
constexpr size_t num_elements(const T &v)
Returns the number of elements in a C style array.
bool in_range(const T1 &v, const IdentityT< T1 > &_min, const IdentityT< T1 > &_max)
Checks whether v is within the given (inclusive) range.
std::ostream & operator<<(std::ostream &o, const std::vector< T > &sv)
Output all the elements of a vector as a comma separated list.
bool in_list(const T &v, const std::initializer_list< T > &l)
Checks whether the value v is found in the given list of values l.
T1 & append(T1 &v1, const T2 &v2)
Append iterable sequence v2 to sequence v1.
auto to_raw_ptr(ENUM *e)
Returns a pointer casted to the underlying type of the given enum.