Lines Matching refs:other_iter
48 const_iterator other_iter = other._head;
49 while ( iter && other_iter ) {
50 if (!( *iter == *other_iter )) {
54 ++other_iter;
56 return !iter && !other_iter;
65 const_iterator other_iter = other._head;
66 while ( iter && other_iter ) {
67 if ( *iter < *other_iter ) {
69 } else if ( *other_iter < *iter ) {
73 ++other_iter;
75 return bool(other_iter);