С Boost :: Thread :
template <typename R>
class shared_future
{
...
// move support
shared_future(shared_future && other);
shared_future(unique_future<R> && other);
shared_future& operator=(shared_future && other);
shared_future& operator=(unique_future<R> && other);
...
}
Что это за двойные амперсанды? Я просмотрел «BS C ++ Langauge 3d edition» и не смог найти никакого объяснения.