标签: c++ templates rvalue-reference rvalue
查看类 Foo 的功能签名:
template <class T> Something<T>&& Foo<T>::result() && { // ... implementation ... return std::move( ... ); }
第一个双与号似乎表示右值引用。但是第二个呢?