LuaHashMap
1.0.0
|
Functions | |
void | LuaHashMap_Clear (LuaHashMap *hash_map) |
Removes all entries from the hash table, but doesn't shrink the hash. | |
void | LuaHashMap_Purge (LuaHashMap *hash_map) |
Removes all entries from the hash table and resets the hash size to 0 (reclaims memory) This removes all entries from the hash table and resets the hash size to 0 (reclaims memory). | |
bool | LuaHashMap_IsEmpty (LuaHashMap *hash_map) |
Returns whether the hash table is empty or or not. | |
void LuaHashMap_Clear | ( | LuaHashMap * | hash_map | ) |
Removes all entries from the hash table, but doesn't shrink the hash.
This removes all entries from the hash table, but it doesn't shrink the hash (doesn't reclaim memory).
hash_map | The LuaHashMap instance to operate on. |
bool LuaHashMap_IsEmpty | ( | LuaHashMap * | hash_map | ) |
Returns whether the hash table is empty or or not.
Returns whether the hash table is empty or or not.
hash_map | The LuaHashMap instance to operate on. |
void LuaHashMap_Purge | ( | LuaHashMap * | hash_map | ) |
Removes all entries from the hash table and resets the hash size to 0 (reclaims memory) This removes all entries from the hash table and resets the hash size to 0 (reclaims memory).
hash_map | The LuaHashMap instance to operate on. |