Evospace  0.19.0
Modding API
 
Loading...
Searching...
No Matches
Table Class Reference

An associative container in the C++ Standard Library that provides fast retrieval of values based on keys. More...

Detailed Description

An associative container in the C++ Standard Library that provides fast retrieval of values based on keys.

Table is a hash table-based container that stores elements in key-value pairs, where each key is unique. It allows fast lookups, insertions, and removals, with average constant-time complexity for these operations. The container uses a hash function to compute the hash value for each key, which determines the position of the key-value pair in the internal data structure. The container automatically handles collisions and manages its memory.

Definition at line 371 of file LuaStateDoxy.h.