Files
2025-10-25 03:02:53 +03:00

1019 B
Raw Permalink Blame History

[istream.rvalue]

31 Input/output library [input.output]

31.7 Formatting and manipulators [iostream.format]

31.7.5 Input streams [input.streams]

31.7.5.6 Rvalue stream extraction [istream.rvalue]

🔗

template<class Istream, class T> Istream&& operator>>(Istream&& is, T&& x);

1

#

Constraints: The expression is >> std::forward(x) is well-formed when treated as an unevaluated operand andIstream is publicly and unambiguously derived from ios_base.

2

#

Effects: Equivalent to:is >> std::forward(x);return std::move(is);