- You accept all responsibility for streaming copyrighted material.
- These terms may be changed without notice.
Modified 6/1/2017
| #include <type_traits> | |
| template <typename...> | |
| struct IsOneOf | |
| { | |
| static constexpr bool value = false; | |
| }; | |
| template <typename T, typename S, typename... Ts> | |
| struct IsOneOf<T, S, Ts...> |