xtd 0.2.0
Loading...
Searching...
No Matches
hash_set.h
Go to the documentation of this file.
1
4#pragma once
5#include "helpers/allocator.h"
6#include "helpers/equator.h"
7#include "helpers/hasher.h"
8#include <unordered_set>
9
11namespace xtd {
13 namespace collections {
15 namespace generic {
32 template<typename type_t>
33 using hash_set = std::unordered_set<type_t, helpers::hasher<type_t>, helpers::equator<type_t>, helpers::allocator<type_t>>;
34 }
35 }
36}
Contains xtd::collections::generic::helpers::allocator alias.
Contains xtd::collections::generic::helpers::equator struct.
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
Contains xtd::collections::generic::helpers::hasher struct.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Implements a function object for performing comparisons. Unless specialised, invokes operator== on ty...
Definition equator.h:37