| 704 | |
| 705 | template<bool is_const> |
| 706 | void buffer::list::iterator_impl<is_const>::seek(unsigned o) |
| 707 | { |
| 708 | p = ls->begin(); |
| 709 | off = p_off = 0; |
| 710 | *this += o; |
| 711 | } |
| 712 | |
| 713 | template<bool is_const> |
| 714 | char buffer::list::iterator_impl<is_const>::operator*() const |