Can I use back_inserter as the output iterator?

A

Allerdyce.John

Can I use back_inserter as the output iterator?
The following code wont't compile, is there a reason for that? How can
I achieve what I want? (grow aList if needed)
class build
{
public:
A* operator()(string& str)
{
return new Astr);
}
};

void buildAVector( vector<string>& inputs, vector<A*>& aList) {

// this does not comile
transform(inputs.begin(), inputs.end(), back_inserter(aList.begin()),
build());

// this does:
transform(inputs.begin(), inputs.end(), aList.begin(), build());
}
 
V

Victor Bazarov

Can I use back_inserter as the output iterator?
The following code wont't compile, is there a reason for that? How can
I achieve what I want? (grow aList if needed)
class build
{
public:
A* operator()(string& str)
{
return new Astr);
}
};

void buildAVector( vector<string>& inputs, vector<A*>& aList) {

// this does not comile
transform(inputs.begin(), inputs.end(), back_inserter(aList.begin()),

Change to

.... back_inserter(aList),
build());

// this does:
transform(inputs.begin(), inputs.end(), aList.begin(), build());
}

V
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top