| 71 | |
| 72 | template<typename T, typename U, typename... Args> |
| 73 | constexpr bool is_any_of() { |
| 74 | AF_IF_CONSTEXPR(!sizeof...(Args)) { return std::is_same<T, U>::value; } |
| 75 | else { return std::is_same<T, U>::value || is_any_of<T, Args...>(); } |
| 76 | } |
| 77 | |
| 78 | } // namespace |
nothing calls this directly
no test coverage detected