emlabcpp
modern opinionated embedded C++ library
aliases.h File Reference
#include "./allocator.h"
#include <deque>
#include <list>
#include <map>
#include <memory>
#include <set>
#include <vector>
+ Include dependency graph for aliases.h:

Go to the source code of this file.

Classes

struct  emlabcpp::pmr::deleter
 

Namespaces

 emlabcpp
 MIT License.
 
 emlabcpp::pmr
 MIT License.
 

Typedefs

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 > > >