| 1027 | return const_iterator(leftmost(), 0); |
| 1028 | } |
| 1029 | iterator end() { |
| 1030 | return iterator(rightmost_, rightmost_->count()); |
| 1031 | } |
| 1032 | const_iterator end() const { |
| 1033 | return const_iterator(rightmost_, rightmost_->count()); |
| 1034 | } |
no test coverage detected