#include "di/container/allocator/allocator.h"
#include "di/container/allocator/fallible_allocator.h"
#include "di/container/allocator/infallible_allocator.h"
#include "di/container/associative/set_interface.h"
#include "di/container/concepts/prelude.h"
#include "di/container/hash/default_hasher.h"
#include "di/container/hash/node/hash_node.h"
#include "di/container/hash/node/owning_node_hash_table.h"
#include "di/container/intrusive/forward_list_forward_declaration.h"
#include "di/container/vector/mutable_vector.h"
#include "di/container/vector/vector.h"
#include "di/container/view/transform.h"
#include "di/function/compare.h"
#include "di/function/equal.h"
#include "di/platform/prelude.h"
#include "di/util/deduce_create.h"
#include "di/vocab/optional/prelude.h"
Go to the source code of this file.
Classes | |
struct | di::container::detail::NodeHashSetTag< Value > |
class | di::container::NodeHashSet< Value, Eq, Hasher, Buckets, Alloc > |
class | di::NodeHashSet< Value, Eq, Hasher, Buckets, Alloc > |
Namespaces | |
namespace | di |
namespace | di::container |
namespace | di::container::detail |
Functions | |
template<concepts::InputContainer Con, typename T = meta::ContainerValue<Con>> | |
auto | di::container::tag_invoke (types::Tag< util::deduce_create >, InPlaceTemplate< NodeHashSet >, Con &&) -> NodeHashSet< T > |
template<concepts::InputContainer Con, typename T = meta::ContainerValue<Con>, typename Eq> | |
auto | di::container::tag_invoke (types::Tag< util::deduce_create >, InPlaceTemplate< NodeHashSet >, Con &&, Eq) -> NodeHashSet< T, Eq > |
template<concepts::InputContainer Con, typename T = meta::ContainerValue<Con>, typename Eq, typename Hasher> | |
auto | di::container::tag_invoke (types::Tag< util::deduce_create >, InPlaceTemplate< NodeHashSet >, Con &&, Eq, Hasher) -> NodeHashSet< T, Eq, Hasher > |