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

775 B

[stream.iterators.general]

24 Iterators library [iterators]

24.6 Stream iterators [stream.iterators]

24.6.1 General [stream.iterators.general]

1

#

To make it possible for algorithmic templates to work directly with input/output streams, appropriate iterator-like class templates are provided.

[Example 1:

partial_sum(istream_iterator<double, char>(cin), istream_iterator<double, char>(), ostream_iterator<double, char>(cout, "\n")); reads a file containing floating-point numbers fromcin, and prints the partial sums ontocout.

— end example]