I need a vector in which i want to insert std::unordered_map.
let, std::unordered_map<int,boost::gregorian::date>un_map;
std::vector<std::unordered_map<int,boost::gregorian::date>>main_vec;
My question is: How to insert and access elements of that vector?
Thanks in advance.
Last edited on
Do you want to insert the whole map into the vector or only the values ?