Boost.RangeEx merged into Boost.Range

[SVN r60897]
This commit is contained in:
Neil Groves
2010-03-28 16:08:35 +00:00
parent 1461479a17
commit b0d1db7c2e
471 changed files with 48610 additions and 2065 deletions

View File

@ -0,0 +1,19 @@
[section:istream_range istream_range]
[heading Prototype]
``
template< class Type, class Elem, class Traits > inline
iterator_range< std::istream_iterator<Type, Elem, Traits> >
istream_range(std::basic_istream<Elem, Traits>& in);
``
[heading Description]
`istream_range` is a function to generator that generates an `iterator_range` wrapping a `std::istream_iterator`.
[heading Definition]
Defined in header file `boost/range/istream_range.hpp`
[endsect]