1#ifndef Cpl_Container_FDictionary_h_
2#define Cpl_Container_FDictionary_h_
48template <
class ITEM,
int NBUCKETS>
63 FDictionary(
const char* ignoreThisParameter_usedToCreateAUniqueConstructor )
64 : m_table( ignoreThisParameter_usedToCreateAUniqueConstructor )
77 ITEM*
remove(
const Key& keyOfObjectToDelete );
88 ITEM*
find(
const Key& keyToFind )
const;
101 ITEM*
next( ITEM& current )
const;
147template <
class ITEM,
int NBUCKETS>
155 while ( ( nextPtr = getFirst() ) )
161template <
class ITEM,
int NBUCKETS>
169template <
class ITEM,
int NBUCKETS>
172 m_table.insert( node );
175template <
class ITEM,
int NBUCKETS>
178 ITEM* nodePtr = find( keyOfObjectToDelete );
181 return (ITEM*)m_table.removeItem( *nodePtr );
186template <
class ITEM,
int NBUCKETS>
189 return m_table.removeItem( node ) != 0;
192template <
class ITEM,
int NBUCKETS>
195 ITEM* nodePtr = first();
198 return (ITEM*)m_table.removeItem( *nodePtr );
204template <
class ITEM,
int NBUCKETS>
207 return (ITEM*)m_table.find( keyToFind );
210template <
class ITEM,
int NBUCKETS>
213 return node.isInContainer_(
this );
216template <
class ITEM,
int NBUCKETS>
219 return (ITEM*)m_table.first();
222template <
class ITEM,
int NBUCKETS>
225 return (ITEM*)m_table.next( current );
228template <
class ITEM,
int NBUCKETS>
231 m_table.tableStats( tableInfo );
This template class implements a Dictionary and/or Hash Table with a FIXED memory allocation (i....
Definition FDictionary.h:50
ITEM * find(const Key &keyToFind) const
Searches for a item with a matching key.
Definition FDictionary.h:205
void stats(HashTableStats &tableInfo) const
Returns table stats.
Definition FDictionary.h:229
FDictionary(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor when statically allocating the instance.
Definition FDictionary.h:63
bool isInDictionary(ITEM &node) const
Returns true if the specified item is in the Dictionary; else false is returned.
Definition FDictionary.h:211
ITEM * remove(const Key &keyOfObjectToDelete)
Removes the node (if it exists) that has the matching key.
Definition FDictionary.h:176
ITEM * getFirst()
Removes the first item in the list.
Definition FDictionary.h:193
void insert(ITEM &node)
Inserts an item into the table.
Definition FDictionary.h:170
ITEM * next(ITEM ¤t) const
Returns the next item in the table.
Definition FDictionary.h:223
ITEM * first() const
Returns the first item in the table. Returns 0 if table is empty.
Definition FDictionary.h:217
void move(FDictionary< ITEM, NBUCKETS > &dst)
Moves the content of the this Dictionary to the specified Dictionary.
Definition FDictionary.h:148
bool removeItem(ITEM &node)
Removes the specified item from the table.
Definition FDictionary.h:187
void clearTheDictionary()
Empties the Dictionary.
Definition FDictionary.h:162
FDictionary()
Constructor.
Definition FDictionary.h:57
This concrete class implements the core functionality for a Dictionary and/or Hash Table.
Definition FHashTable_.h:38
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
This struct defines what usage/stats can be retrieved from a Hash table.
Definition Hash.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20