vecs
Fast, flexible ecs in C++ with ergonomic API
|
A dense map optimized for integral keys. More...
#include <dense_map.h>
Public Types | |
using | pair_type = std::pair<Key, Value> |
using | iterator = typename std::vector<pair_type>::iterator |
using | const_iterator = typename std::vector<pair_type>::const_iterator |
A dense map optimized for integral keys.
This map uses sorted vectors to store keys and values, optimized for integer-based keys.
Key | The integral type of the key. |
Value | The type of the value associated with each key. |