
20 Apr
2011
20 Apr
'11
8:05 p.m.
From: Gevorg Voskanyan <v_gevorg@yahoo.com> Artyom wrote:
create some std::string back_inserter (that by the way string does not have so we need to write one)
Pardon me, what does std::string not have? std::string has push_back so it is
perfectly fine to have a back_inserter on std::string, without having to write
any support/adapt code for it.
Yes, you are right, I probably had mistaken with some other container... I don't know why I thought that std::string does not have push_back. Artyom