#include "./allocator.h"
#include <deque>
#include <list>
#include <map>
#include <memory>
#include <set>
#include <vector>
Go to the source code of this file.
|
template<typename T > |
using | emlabcpp::pmr::unique_ptr = std::unique_ptr< T, deleter > |
|
template<typename T > |
using | emlabcpp::pmr::vector = std::vector< T, allocator< T > > |
|
template<typename T > |
using | emlabcpp::pmr::list = std::list< T, allocator< T > > |
|
template<typename T > |
using | emlabcpp::pmr::set = std::set< T, allocator< T > > |
|
template<typename T > |
using | emlabcpp::pmr::deque = std::deque< T, allocator< T > > |
|
template<typename Key , typename T > |
using | emlabcpp::pmr::map = std::map< Key, T, std::less< Key >, allocator< std::pair< Key const, T > > > |
|