aboutsummaryrefslogtreecommitdiff
path: root/src/stable
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable')
-rw-r--r--src/stable/list.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/stable/list.h b/src/stable/list.h
index 7e41581..5b5b7e9 100644
--- a/src/stable/list.h
+++ b/src/stable/list.h
@@ -703,11 +703,21 @@ namespace Bu
703 { 703 {
704 return *(pLink->pValue); 704 return *(pLink->pValue);
705 } 705 }
706
707 const value &operator*() const
708 {
709 return *(pLink->pValue);
710 }
706 711
707 const value *operator->() 712 const value *operator->()
708 { 713 {
709 return pLink->pValue; 714 return pLink->pValue;
710 } 715 }
716
717 const value *operator->() const
718 {
719 return pLink->pValue;
720 }
711 721
712 const_iterator &operator++() 722 const_iterator &operator++()
713 { 723 {
@@ -813,6 +823,17 @@ namespace Bu
813 return const_iterator( core->pFirst ); 823 return const_iterator( core->pFirst );
814 } 824 }
815 825
826 iterator rbegin()
827 {
828 _hardCopy();
829 return iterator( core->pLast );
830 }
831
832 const_iterator rbegin() const
833 {
834 return const_iterator( core->pLast );
835 }
836
816 /** 837 /**
817 * Get an iterator pointing to a place just past the last item in 838 * Get an iterator pointing to a place just past the last item in
818 * the list. 839 * the list.