| 92 | |
| 93 | template <class T> |
| 94 | void insert(ssize_t index, T const& x) // insert object before index |
| 95 | { |
| 96 | base::insert(index, object(x)); |
| 97 | } |
| 98 | |
| 99 | template <class T> |
| 100 | void insert(object const& index, T const& x) // insert object before index |
no test coverage detected