| 66 | constexpr bool isBool(af::dtype type) { return (type == b8); } |
| 67 | |
| 68 | constexpr bool isFloating(af::dtype type) { |
| 69 | return (!isInteger(type) && !isBool(type)); |
| 70 | } |
| 71 | |
| 72 | template<typename T, typename U, typename... Args> |
| 73 | constexpr bool is_any_of() { |
no test coverage detected