Jul 25, 2018 at 7:56am
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 Jul 25, 2018 at 8:01am
Jul 25, 2018 at 9:43am
Do you want to insert the whole map into the vector or only the values ?