libcommonc++
0.7
|
#include <BTree.h++>
Public Member Functions | |
Iterator (BTree< K, V, ORDER > &tree) | |
Construct a new Iterator for the given BTree. More... | |
virtual | ~Iterator () |
Destructor. More... | |
virtual void | rewind () |
Rewind the iterator to the first item in the sequence. More... | |
virtual V | next () |
Get the next item in the sequence. More... | |
virtual bool | hasNext () |
Test if there are more items in the sequence. More... | |
virtual void | remove () |
Remove the current item from the sequence. More... | |
A BTree iterator.
|
inlinevirtual |
Destructor.
Reimplemented from Iterator< V >.
|
virtual |
Test if there are more items in the sequence.
Implements Iterator< V >.
|
virtual |
Get the next item in the sequence.
Implements Iterator< V >.
|
virtual |
Remove the current item from the sequence.
Implements Iterator< V >.
|
virtual |
Rewind the iterator to the first item in the sequence.
Implements Iterator< V >.