| 114 | namespace { |
| 115 | |
| 116 | template <grouped_idx_vector_type T> void check_equal(T const& first, T const& second) { |
| 117 | REQUIRE(first.size() == second.size()); |
| 118 | for ([[maybe_unused]] auto const& [index, first_element, second_element] : enumerated_zip_sequence(first, second)) { |
| 119 | CHECK(std::ranges::equal(first_element, second_element)); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | } // namespace |
| 124 |
no test coverage detected