template<class T>
class Eigen::aligned_allocator< T >
STL compatible allocator to use with with 16 byte aligned types.
Example:
std::map< int, Matrix4f, std::less<int>,
aligned_allocator<std::pair<const int, Matrix4f> > > my_map_mat4;
std::map< int, Vector3f > my_map_vec3;
- See also
- Using STL Containers with Eigen.
Inherits allocator< T >.