template<class Istream, class T> Istream&& operator>>(Istream&& is, T&& x);
is >> std::forward<T>(x); return std::move(is);