1#ifndef ENTT_CONTAINER_FWD_HPP
2#define ENTT_CONTAINER_FWD_HPP
4#include "../stl/functional.hpp"
5#include "../stl/memory.hpp"
6#include "../stl/utility.hpp"
7#include "../stl/vector.hpp"
14 typename = stl::hash<Key>,
15 typename = stl::equal_to<>,
16 typename = stl::allocator<stl::pair<const Key, Type>>>
21 typename = stl::hash<Type>,
22 typename = stl::equal_to<>,
23 typename = stl::allocator<Type>>
33template<
typename... Type>
Basic table implementation.
Associative container for key-value pairs with unique keys.
Associative container for unique objects of a given type.
basic_table< stl::vector< Type >... > table
Alias declaration for the most common use case.