| 9 | |
| 10 | template <class T, class S> |
| 11 | static bool equal(T const&a, S const& b) { |
| 12 | return a == b; |
| 13 | } |
| 14 | template<class R, class S> |
| 15 | static bool equal(std::span<R> const&a, std::span<S> const& b) { |
| 16 | if (a.size() != b.size()) { return false; } |
no test coverage detected