Tagged Questions
10
votes
3answers
324 views
Limiting the range for std::copy with std::istream_iterator
I have constructed a minimal working example to show a problem I've encountered using STL iterators. I'm using istream_iterator to read floatss (or other types) from a std::istream:
#include ...
5
votes
9answers
750 views
How to read arbitrary number of values using std::copy?
I'm trying to code opposite action to this:
std::ostream outs; // properly initialized of course
std::set<int> my_set; // ditto
outs << my_set.size();
std::copy( my_set.begin(), ...
3
votes
2answers
68 views
Sparing User from Specifying Policy Template Parameter
I'm designing a kind of istream_iterator (call it my_istream_iterator) designed to extract words from an input stream. The manner in which the words extracted from the iterator will be dealt with is ...
1
vote
3answers
327 views
C++ compilation error using string and istream_iterator
When trying to compile the following:
#include <string>
#include <iterator>
#include <iostream>
using namespace std;
int main() {
string s(istream_iterator<char>(cin), ...
0
votes
0answers
36 views
Reading a fixed number of arguments using istream_iterator [closed]
Possible Duplicate:
Limiting the range for std::copy with std::istream_iterator
We know, for example, how to read all the integers from stdin into a vector using istream_iterator:
...