Lines Matching refs:pos
243 iterator insert_after(const_iterator pos, const_reference value) {
245 if (pos) {
246 MutableList<T> before=static_cast<MutableList<T> &>(pos);
292 void _insert_from_temp(const_iterator pos, ListContainer const &temp) {
299 } else if (pos) {
300 if ( pos == _head ) { /* prepend */
304 MutableList<T> before=_before(pos);
305 set_rest(temp._tail, static_cast<MutableList<T> &>(pos));
313 void _insert_after_from_temp(const_iterator pos,
322 } else if (pos) {
323 if ( pos == _tail ) { /* append */
327 MutableList<T> before=static_cast<MutableList<T> &>(pos);