
8 Jul
2004
8 Jul
'04
12:17 p.m.
David Abrahams wrote:
"Andy Little" <andy@servocomm.freeserve.co.uk> writes:
"Dave Harris" <brangdon@cix.compulink.co.uk> wrote
In-Reply-To: <cch4as$941$1@sea.gmane.org>
has no direct equivalent. It becomes: v.clear(); v << 1 << 2 << 3;
or v <<= 1 << 2 << 3;
surely not ;-)
*maybe* it would be
(v <<= 1) << 2 << 3
Or maybe we should just use int cv[] = { 1, 2, 3 }; v.assign( cv, end(cv) ); as I've been doing for years.