Warning!
The version you're viewing is not the latest.
Go to the latest version
Struct meta_container_traits
Synopsis
#include <src/entt/meta/container.hpp>
template<typename Container, template<typename> class... Trait>
struct meta_container_traits: public Trait<Container>...
Description
Container traits.
- Template Parameters
Container
- Type of the underlying container.Trait
- Traits associated with the underlying container.
Inheritance
Ancestors: Trait< Container >
Source
Lines 26-30 in src/entt/meta/container.hpp.
template<typename Container, template<typename> class... Trait>
struct meta_container_traits: public Trait<Container>... {
/*! @brief Type of container. */
using type = Container;
};