Lines Matching defs:const_iterator
35 for ( const_iterator iter = other.begin() ; iter ; ++iter ) {
47 const_iterator iter = _head;
48 const_iterator other_iter = other._head;
64 const_iterator iter = _head;
65 const_iterator other_iter = other._head;
84 typedef List<T const> const_iterator;
92 const_iterator begin() const { return _head; }
94 const_iterator end() const { return const_iterator(); }
129 iterator insert(const_iterator position, const_reference value) {
146 void insert(const_iterator position, size_type count, const_reference value)
151 void insert(const_iterator position, ForwardIterator i, ForwardIterator j) {
154 void erase(const_iterator position) {
157 void erase(const_iterator i, const_iterator j) {
243 iterator insert_after(const_iterator pos, const_reference value) {
256 void insert_after(const_iterator position, size_type count,
262 void insert_after(const_iterator position,
267 void erase_after(const_iterator position) {
284 MutableList<T> _before(const_iterator position) {
292 void _insert_from_temp(const_iterator pos, ListContainer const &temp) {
313 void _insert_after_from_temp(const_iterator pos,