4#ifndef __eigenpy_std_map_hpp__ 5#define __eigenpy_std_map_hpp__ 7#include "eigenpy/map.hpp" 8#include "eigenpy/deprecated.hpp" 13template <
typename Container>
14using overload_base_get_item_for_std_map EIGENPY_DEPRECATED_MESSAGE(
15 "Use overload_base_get_item_for_map<> instead.") =
19using ::eigenpy::overload_base_get_item_for_std_map;
32template <
class Key,
class T,
class Compare = std::less<Key>,
33 class Allocator = std::allocator<std::pair<const Key, T>>,
Expose the map-like container, e.g. (std::map).
Expose an std::map from a type given as template argument.
Change the behavior of indexing (method getitem in Python). This is suitable e.g. for container of Ei...