kokkos-utils 0.0.1
 
Loading...
Searching...
No Matches
Kokkos::utils::impl::IsTypeOneOf Concept Reference

Check if T is the same as one of the types Ts. More...

#include <type_traits.hpp>

Concept definition

template<typename T, typename... Ts>
concept Kokkos::utils::impl::IsTypeOneOf = std::disjunction_v<std::is_same<T, Ts>...>
Check if T is the same as one of the types Ts.

Detailed Description

Check if T is the same as one of the types Ts.

Definition at line 37 of file type_traits.hpp.