Re: Defining long constants - do-able but not exactly elegant
- Posted by Robert Craig <rds at RapidEuphoria.com> Mar 14, 2002
- 492 views
Kat writes:
> I thought the whole point of using append() is that Rob
> optimised it to not make copies?
The simple, common case:
x = append(x, something)
is highly optimized for use in a loop.
More complicated things like:
x[i] = append(x[i], something)
are not.
Regards,
Rob Craig
Rapid Deployment Software
http://www.RapidEuphoria.com

