Template Struct StdMapPythonVisitor
Defined in File std-map.hpp
Inheritance Relationships
Base Type
public eigenpy::GenericMapVisitor< std::map< Key, T, std::less< Key >, std::allocator< std::pair< const Key, T > > >, false >
(Template Struct GenericMapVisitor)
Struct Documentation
-
template<class Key, class T, class Compare = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>, bool NoProxy = false>
struct StdMapPythonVisitor : public eigenpy::GenericMapVisitor<std::map<Key, T, std::less<Key>, std::allocator<std::pair<const Key, T>>>, false> Expose an std::map from a type given as template argument.
- Param T:
[in] Type to expose as std::map<T>.
- Param Compare:
[in] Type for the Compare in std::map<T,Compare,Allocator>.
- Param Allocator:
[in] Type for the Allocator in std::map<T,Compare,Allocator>.
- Param NoProxy:
[in] When set to false, the elements will be copied when returned to Python.