co_ecs 0.9.0
Cobalt ECS
Loading...
Searching...
No Matches
sparse_map.hpp
Go to the documentation of this file.
1#pragma once
2
4
5namespace co_ecs::detail {
6
11template<std::unsigned_integral K, typename T, typename Allocator = std::allocator<std::pair<K, T>>>
12using sparse_map = sparse_table<K, T, true, Allocator>;
13
14} // namespace co_ecs::detail
Definition component.hpp:17
sparse_table< K, T, true, Allocator > sparse_map
Sparse map.
Definition sparse_map.hpp:12