* Apply `proxy_sort` to the permutation view. This will permute the index * range so that the indexed data range is sorted. The index range will be * initialized with the identity permutation. */
| 170 | * initialized with the identity permutation. |
| 171 | */ |
| 172 | void proxy_sort() { |
| 173 | ::proxy_sort( |
| 174 | std::ranges::subrange(data_begin_, data_end_), |
| 175 | std::ranges::subrange(index_begin_, index_end_)); |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Apply `proxy_sort_no_init` to the permutation view. This will permute the |
no test coverage detected