TRIQS/nda 1.3.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
nda::AnyOf Concept Reference

#include <nda/concepts.hpp>

Detailed Description

True iif T is same_as any of the Us.

See nda::is_any_of for implementation.

Template Parameters
TType to check
UsTypes to check against

Definition at line 148 of file concepts.hpp.

Concept definition

template<typename T, typename... Us>
concept nda::AnyOf = is_any_of<T, Us...>
True iif T is same_as any of the Us.
Definition concepts.hpp:148
static constexpr bool is_any_of
Constexpr variable that is true if type T is contained in the parameter pack Ts.
Definition traits.hpp:63