BioC++ core-0.7.0
The Modern C++ libraries for Bioinformatics.
 
Loading...
Searching...
No Matches
bio::meta::one_of Concept Reference

Resolves to (std::same_as<query_t, other_types> || ...). More...

#include <bio/meta/concept/core_language.hpp>

Concept definition

template<typename query_t, typename... other_types>
concept bio::meta::one_of = (BIOCPP_IS_SAME(query_t, other_types) || ...)
Resolves to (std::same_as<query_t, other_types> || ...).
Definition: core_language.hpp:74
#define BIOCPP_IS_SAME(...)
A macro that behaves like std::is_same_v, except that it doesn't need to instantiate the template on ...
Definition: core.hpp:175

Detailed Description

Resolves to (std::same_as<query_t, other_types> || ...).