I've been reading Accelerated C++ 2000 for a few days now, and I came upon the vector<~>.
Suppose I want to append values to my vector that must never change, should I write
const vector<double>;
or
vector<const double>;
?
I'm asking because I'm not sure which one will work according to what I want to happen.