| library: libCore #include "TExMap.h" |

| TExMapIter(const TExMap* map) | |
| TExMapIter(const TExMapIter& tei) | |
| virtual | ~TExMapIter() |
| static TClass* | Class() |
| const TExMap* | GetCollection() const |
| virtual TClass* | IsA() const |
| Bool_t | Next(Long_t& key, Long_t& value) |
| Bool_t | Next(ULong_t& hash, Long_t& key, Long_t& value) |
| TExMapIter& | operator=(const TExMapIter&) |
| void | Reset() |
| virtual void | ShowMembers(TMemberInspector& insp, char* parent) |
| virtual void | Streamer(TBuffer& b) |
| void | StreamerNVirtual(TBuffer& b) |
TExMap
This class stores a (key,value) pair using an external hash.
The (key,value) are Long_t's and therefore can contain object
pointers or any longs. The map uses an open addressing hashing
method (linear probing).
Get next entry from TExMap. Returns kFALSE at end of map.