9 #ifndef mrpt_traits_maps_H 10 #define mrpt_traits_maps_H 26 template <
class KEY,
class VALUE,
class _LessPred = std::less<KEY>,
class _Alloc = Eigen::aligned_allocator<std::pair<const KEY, VALUE> > >
27 struct map :
public std::map<KEY,VALUE,_LessPred,_Alloc> {
33 template <
class KEY,
class VALUE,
class _LessPred = std::less<KEY>,
class _Alloc = Eigen::aligned_allocator<std::pair<const KEY, VALUE> > >
A STL-like container which looks and behaves (almost exactly) like a std::map<> but is implemented as...
Traits for using a mrpt::utils::map_as_vector<> (dense, fastest representation)
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Traits for using a std::map<> (sparse representation)