
24 Sep
2004
24 Sep
'04
9:58 p.m.
"Reece Dunn" <msclrhd@hotmail.com> wrote in message news:41549378.5060205@hotmail.com... | [2] The direct result of not supporting [1] is that you cannot utilize | Roland Richter's usage: | | std::list<char> cl = lexical_cast< std::list<char> >( "[ a, b, c ]" ); just a remark: this can be done with boost.assign: std::list<char> cl = list_of('a')('b')('c'); br Thorsten