Home | History | Annotate | Download | only in unit

Lines Matching refs:istream_iterator

41 typedef istream_iterator<char> istream_char_ite;
42 typedef istream_iterator<int> istream_int_ite;
43 typedef istream_iterator<string> istream_string_ite;
45 typedef istream_iterator<char, ptrdiff_t> istream_char_ite;
46 typedef istream_iterator<int, ptrdiff_t> istream_int_ite;
47 typedef istream_iterator<string, ptrdiff_t> istream_string_ite;
86 //through a istream_iterator.
117 * returned by copy_n but is lost as this istream_iterator is not used.
118 * copy_n and istream_iterator can only be combined safely if:
119 * - you always extract the same type of istream_iterator and you always reuse
120 * the istream_iterator returned by copy_n (see previous test with "aabbcd")
140 istream_iterator<int> itr(is);