| 1215 | //--------------------------------------------------------invert_container |
| 1216 | template <class Array> |
| 1217 | void invert_container(Array& arr) |
| 1218 | { |
| 1219 | int i = 0; |
| 1220 | int j = arr.size() - 1; |
| 1221 | while (i < j) |
| 1222 | { |
| 1223 | swap_elements(arr[i++], arr[j--]); |
| 1224 | } |
| 1225 | } |
| 1226 | |
| 1227 | //------------------------------------------------------binary_search_pos |
| 1228 | template <class Array, class Value, class Less> |
nothing calls this directly
no test coverage detected