co_ecs 0.9.0
Cobalt ECS
Loading...
Searching...
No Matches
hash_map.hpp
Go to the documentation of this file.
1#pragma once
2
4
5namespace co_ecs::detail {
6
14template<typename K,
15 typename T,
16 typename Hash = std::hash<K>,
17 typename KeyEqual = std::equal_to<K>,
18 typename Allocator = std::allocator<std::pair<K, T>>>
19using hash_map = hash_table<K, T, true, Hash, KeyEqual, Allocator>;
20
21} // namespace co_ecs::detail
Definition component.hpp:17
hash_table< K, T, true, Hash, KeyEqual, Allocator > hash_map
Hash map.
Definition hash_map.hpp:19