ppap4lmp
0.7.2
|
This file includes a part of C++ Standard Template Library and defines aliases for them. More...
#include <memory>
#include <string>
#include <vector>
#include <unordered_map>
#include <unordered_set>
Go to the source code of this file.
Typedefs | |
template<typename T > | |
using | ShPtr = std::shared_ptr< T > |
ShPtr is an alias for shared pointer. | |
using | Str = std::string |
Str is an alias for string. | |
template<typename T > | |
using | Vec = std::vector< T > |
Vec is an alias for vector (same as list in Python). | |
template<typename T , typename U > | |
using | Map = std::unordered_map< T, U > |
Map is an alias for unordered map (same as dict in Python). More... | |
template<typename T > | |
using | Set = std::unordered_set< T > |
Set is an alias for unordered set (same as set in Python). More... | |
This file includes a part of C++ Standard Template Library and defines aliases for them.
Definition in file std.h.
using Map = std::unordered_map<T,U> |