idol
A C++ Framework for Optimization
Loading...
Searching...
No Matches
Set.h
1//
2// Created by henri on 19/09/22.
3//
4
5#ifndef OPTIMIZE_SET_H
6#define OPTIMIZE_SET_H
7
8#include <unordered_set>
9
10namespace idol {
11 template<
12 class Key,
13 class Hash = std::hash<Key>,
14 class KeyEqual = std::equal_to<Key>,
15 class Allocator = std::allocator<Key>
16 >
17 using Set = std::unordered_set<Key, Hash, KeyEqual, Allocator>;
18}
19
20#endif //OPTIMIZE_SET_H