i have a vector of pairs vector<pair<int , bool >>v; lets say initial values of vector of pair v is : 1 -> 0 2 -> 1 3 -> 0 now i have want to again reset the boolean values of vector v to 0 s0 ,how can i do it without looping over vector v ?? is it possible