C4 Engine
C4 Engine API Documentation

HashTable::RemoveHashTableElement

Defined in:  TSHash.h
Removes a particular element from a hash table.
Prototype

static void RemoveHashTableElement(HashTableElement<type> *element);

Parameters
element A pointer to the object to remove from the hash table.
Description
The RemoveHashTableElement function removes the object specified by the element parameter from a hash table. The object must belong to hash table for which the RemoveHashTableElement function is called, or the internal links will become corrupted.
See Also

HashTable::RemoveAllHashTableElements

HashTable::PurgeHashTable