#include <aws/core/Core_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSAllocator.h>
#include <map>
#include <unordered_map>
#include <cstring>
Go to the source code of this file.
|
template<typename K , typename V > |
using | Aws::Map = std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > |
|
template<typename K , typename V > |
using | Aws::UnorderedMap = std::unordered_map< K, V, std::hash< K >, std::equal_to< K >, Aws::Allocator< std::pair< const K, V > > > |
|
template<typename K , typename V > |
using | Aws::MultiMap = std::multimap< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > |
|
template<typename V > |
using | Aws::CStringMap = std::map< const char *, V, CompareStrings, Aws::Allocator< std::pair< const char *, V > > > |
|