| 137 | } |
| 138 | |
| 139 | void insert(iterator where, T item) { |
| 140 | assert_precondition(begin() <= where && where <= end()); |
| 141 | void *dst = _insert(where, 1, kItemSize); |
| 142 | *(T*)dst = std::move(item); |
| 143 | } |
| 144 | |
| 145 | template <class ITER> |
| 146 | void insert(iterator where, ITER b, ITER e) { |
no test coverage detected