#include <Index.h>
Collaboration diagram for BucketIter:
Public Member Functions | |
BucketIter () | |
BucketIter (HashIndexNode *head) | |
HashIndexNode * | next () |
Friends | |
class | BucketList |
Definition at line 41 of file Index.h.
BucketIter::BucketIter | ( | HashIndexNode * | head | ) | [inline] |
HashIndexNode * BucketIter::next | ( | ) |
Definition at line 19 of file BucketIter.cxx.
References DM_HashIndex, HashIndexNode::next_, and printDebug.
Referenced by HashIndex::insert(), and TupleIterator::next().
00020 { 00021 if (iter == NULL) return NULL; 00022 HashIndexNode *node = iter; 00023 iter = iter ->next_; 00024 printDebug(DM_HashIndex,"BucketIter::next returns %x",node); 00025 return node; 00026 }
Here is the caller graph for this function:
friend class BucketList [friend] |