Message 31,975 of 33,346   
   Dave Abrahams to All   
   Re: Where are iterators for rvalue conta   
   02 Mar 12 13:01:02   
   
   178b9c1e   
   From: dave@boostpro.com   
      
   on Fri Mar 02 2012, Gene Bushuyev wrote:   
      
   > I was looking at the C++11 standard docs and didn't see iterators for   
   > rvalue containers. For example, std::vector has only these begin()   
   > member functions:   
   >   
   > iterator begin();   
   > const_iterator begin() const;   
   >   
   > Where is "iterator begin() &&;" ?   
   >   
   > Say, I want to construct my container by moving from a vector,   
   >   
   > MyContainer::MyContainer(vector