| 7847 | // This generic version is used when k is 0. |
| 7848 | template <typename T, typename U> |
| 7849 | inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } |
| 7850 | |
| 7851 | // This overload is used when k >= 1. |
| 7852 | template <typename T, typename U, size_t N> |
no outgoing calls
no test coverage detected