1#ifndef CONTAINER_TRAIT_H_
2#define CONTAINER_TRAIT_H_
14#include <unordered_map>
15#include <unordered_set>
35 template<
class Key,
class T,
class Hash,
class KeyEqual,
class Allocator>
45 template<
class Key,
class Hash,
class KeyEqual,
class Allocator>
70 template<
class Key,
class T,
class Compare,
class Allocator>
79 template<
class Key,
class Compare,
class Allocator>
Home of the DiceHash.
Definition DiceHash.hpp:30
constexpr bool is_unordered_container_v
Helper definition.
Definition Container_trait.hpp:53
constexpr bool is_ordered_container_v
Helper definition.
Definition Container_trait.hpp:87
Typetrait for checking if a type T is an ordered container.
Definition Container_trait.hpp:61
Typetrait for checking if a type T is an unordered container.
Definition Container_trait.hpp:25