Brian Silverman | 598d029 | 2018-08-04 23:56:47 -0700 | [diff] [blame^] | 1 | [/ |
| 2 | Copyright 2010 Neil Groves |
| 3 | Distributed under the Boost Software License, Version 1.0. |
| 4 | (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 5 | /] |
| 6 | [section:istream_range istream_range] |
| 7 | |
| 8 | [heading Prototype] |
| 9 | |
| 10 | `` |
| 11 | template< class Type, class Elem, class Traits > inline |
| 12 | iterator_range< std::istream_iterator<Type, Elem, Traits> > |
| 13 | istream_range(std::basic_istream<Elem, Traits>& in); |
| 14 | `` |
| 15 | |
| 16 | [heading Description] |
| 17 | |
| 18 | `istream_range` is a function to generator that generates an `iterator_range` wrapping a `std::istream_iterator`. |
| 19 | |
| 20 | [heading Definition] |
| 21 | |
| 22 | Defined in header file `boost/range/istream_range.hpp` |
| 23 | |
| 24 | [endsect] |