Suppose I have the following function:
void foo(std::vector<int> vec, int n);
If I call the function like this:
std::vector<int> numbers { 2, 3, 5, 7, 11, 13, 17, 19 };
foo(std::move(numbers), numbers[0]);
Are all the arguments completely evaluated before being bound to their parameters? In that case, the std::move is harmless, because it simply yields an xvalue referring to numbers. Or can each individual argument immediately be bound to its parameter as soon as it is evaluated? In that case, numbers[0] could cause undefined behavior, because numbers could already have been moved into vec.
numbers[0]will not throw, right? You meannumbers.at(0), right? – R. Martinho Fernandes Aug 29 '11 at 11:18numbers[0]can do all the sanity checks it wants to. – FredOverflow Aug 29 '11 at 11:21