|
template<typename T1 > |
bool | cosmos::in_range (const T1 &v, const IdentityT< T1 > &_min, const IdentityT< T1 > &_max) |
| Checks whether v is within the given (inclusive) range.
|
|
template<typename T > |
bool | cosmos::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 .
|
|
template<typename T > |
constexpr size_t | cosmos::num_elements (const T &v) |
| Returns the number of elements in a C style array.
|
|
template<typename T1 , typename T2 > |
T1 & | cosmos::append (T1 &v1, const T2 &v2) |
| Append iterable sequence v2 to sequence v1.
|
|
template<typename ENUM > |
constexpr auto | cosmos::to_integral (const ENUM e) -> typename std::underlying_type< ENUM >::type |
| Casts an enum constant value into its underlying primitive type.
|
|
template<typename ENUM > |
auto | cosmos::to_raw_ptr (ENUM *e) |
| Returns a pointer casted to the underlying type of the given enum.
|
|
template<typename VARIANT > |
bool | cosmos::is_empty_variant (const VARIANT &var) |
|
template<typename VARIANT > |
bool | cosmos::variant_holds_value (const VARIANT &var) |
|
TwiceIterator | cosmos::begin (Twice &) |
|
TwiceIterator | cosmos::end (Twice &) |
|
template<typename T > |
std::ostream & | operator<< (std::ostream &o, const std::vector< T > &sv) |
| Output all the elements of a vector as a comma separated list.
|
|
template<typename K , typename V > |
std::ostream & | operator<< (std::ostream &o, const std::map< K, V > &m) |
| Output all the elements of a map as a "key:value" newline separated list.
|
|
This header contains some helper algorithm-like functions for dealing with STL containers, types and more.
Furthermore some general convenience types used across libcosmos.
Definition in file utils.hxx.