xtd 0.2.0
Loading...
Searching...
No Matches

◆ hash_set

template<typename type_t >
using xtd::collections::generic::hash_set = typedef std::unordered_set<type_t, helpers::hasher<type_t>, helpers::equator<type_t>, helpers::allocator<type_t> >

Represents a set of values.

Definition
template<typename type_t>
using hash_set = std::unordered_set<type_t, helpers::hasher<type_t>, helpers::equator<type_t>, helpers::allocator<type_t>>;
std::unordered_set< type_t, helpers::hasher< type_t >, helpers::equator< type_t >, helpers::allocator< type_t > > hash_set
Represents a set of values.
Definition hash_set.h:33
std::allocator< type_t > allocator
Represent an allocator alias.
Definition allocator.h:35
Implements a function object for performing comparisons. Unless specialised, invokes operator== on ty...
Definition equator.h:37
Header
#include <xtd/collections/hash_set
Namespace
xtd::collections::generic
Library
xtd.core
Remarks
The xtd::collections::generic::hash_set class is same as std::unordered_set.