#include <BTree.h++>

Public Member Functions | |
| Iterator (BTree< K, V, ORDER > &tree) | |
| Construct a new Iterator for the given BTree. | |
| virtual | ~Iterator () |
| Destructor. | |
| virtual void | rewind () |
| Rewind the iterator to the first item in the sequence. | |
| virtual V | next () throw (OutOfBoundsException) |
| Get the next item in the sequence. | |
| virtual bool | hasNext () |
| Test if there are more items in the sequence. | |
| virtual void | remove () |
| Remove the current item from the sequence. | |
A BTree iterator.
| virtual ~Iterator | ( | ) | [inline, virtual] |
Destructor.
Reimplemented from Iterator< V >.
| virtual bool hasNext | ( | ) | [virtual] |
Test if there are more items in the sequence.
Implements Iterator< V >.
| virtual V next | ( | ) | throw (OutOfBoundsException) [virtual] |
Get the next item in the sequence.
Implements Iterator< V >.
| virtual void remove | ( | ) | [virtual] |
Remove the current item from the sequence.
Implements Iterator< V >.
| virtual void rewind | ( | ) | [virtual] |
Rewind the iterator to the first item in the sequence.
Implements Iterator< V >.
1.6.3