added C++0x-style cbegin(), cend() iterator methods

- added STL-compatible resize() method.
  Should this be the primary entry point?

- made [DS]LListBase end iterators private
This commit is contained in:
Mark Olesen
2009-01-20 10:55:39 +01:00
parent 19fc795489
commit 7b769b5035
33 changed files with 461 additions and 91 deletions

View File

@ -384,6 +384,12 @@ public:
};
//- const_iterator set to the beginning of the HashTable
inline const_iterator cbegin() const;
//- const_iterator set to beyond the end of the HashTable
inline const const_iterator& cend() const;
//- const_iterator set to the beginning of the HashTable
inline const_iterator begin() const;