I tried following example from boost doc, but not sure what header should be included. Had tried the headers in the doc but still reporting: error: 'vector' was not declared in this scope
vector<int, float> v(12, 5.5f);
std::cout << at_c<0>(v) << std::endl;
std::cout << at_c<1>(v) << std::endl;
Btw, I haven't installed boost on my PC yet, just using the online IDE.