AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
AWSSet.h
Go to the documentation of this file.
1
6#pragma once
7
9
11
12#include <set>
13#include <unordered_set>
14
15namespace Aws
16{
17
18template< typename T > using Set = std::set< T, std::less< T >, Aws::Allocator< T > >;
19template< typename T > using UnorderedSet = std::unordered_set< T, std::hash< T >, std::equal_to< T >, Aws::Allocator< T > >;
20
21} // namespace Aws
std::allocator< T > Allocator
Definition: AWSAllocator.h:39
std::unordered_set< T, std::hash< T >, std::equal_to< T >, Aws::Allocator< T > > UnorderedSet
Definition: AWSSet.h:19
std::set< T, std::less< T >, Aws::Allocator< T > > Set
Definition: AWSSet.h:18