xtd 0.2.0
hash_set.hpp
Go to the documentation of this file.
1
4#pragma once
6#include "helpers/equator.hpp"
7#include "helpers/hasher.hpp"
8#include "iset.hpp"
9#include <unordered_set>
10
12namespace xtd {
14 namespace collections {
16 namespace generic {
33 template<class type_t, class hasher_t = xtd::collections::generic::helpers::hasher<type_t>, class equator_t = xtd::collections::generic::helpers::equator<type_t>, class allocator_t = xtd::collections::generic::helpers::allocator<type_t>>
34 using hash_set = std::unordered_set<type_t, hasher_t, equator_t, allocator_t>;
35 }
36 }
37}
Contains xtd::collections::generic::helpers::allocator alias.
Contains xtd::collections::generic::helpers::equator struct.
std::unordered_set< type_t, hasher_t, equator_t, allocator_t > hash_set
Represents a set of values.
Definition hash_set.hpp:34
std::allocator< type_t > allocator
Represent an allocator alias.
Definition allocator.hpp:38
Contains xtd::collections::generic::helpers::hasher struct.
Contains xtd::collections::generic::iset <type_t> interface.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10
Implements a function object for performing comparisons. Unless specialised, invokes operator== on ty...
Definition equator.hpp:38