What\'s the fastest way to reset every value of a std::vector to 0 and keeping the vectors initial size ?
std::vector
A for loop with the [] operator ?
std::fill(v.begin(), v.end(), 0);