ACTS
Experiment-independent tracking
Loading...
Searching...
No Matches
Acts::Concepts::same_as_any_of Concept Reference

Concept that is true if T is the same as any of Ts. More...

#include <Acts/Utilities/Concepts.hpp>

Concept definition

template<typename T, typename... Ts>
concept Acts::Concepts::same_as_any_of = (std::same_as<T, Ts> || ...)
Concept that is true if T is the same as any of Ts.
Definition Concepts.hpp:18

Detailed Description

Concept that is true if T is the same as any of Ts.