Am I allowed to move elements out of a std::initializer_list<T>?
#include <initializer_list>
#include <utility>
template<typename T>
void foo(std::initializer_list<T> list)
{
for (auto it = list.begin(); it != list.end(); ++it)
{
bar(std::move(*it)); // kosher?
}
}
Since std::intializer_list<T> requires special compiler attention and does not have value semantics like normal containers of the C++ standard library, I'd rather be safe than sorry and ask.
initializer_list<T>are non-const. Like,initializer_list<int>refers tointobjects. But I think that is a defect - it is intended that compilers can statically allocate a list in read only memory. – Johannes Schaub - litb Nov 19 '11 at 14:42