Ahh, no, I havn't tried that, yet.. ;)
/ Marcus Agehall (Trådlös)
Previous text:
2003-03-20 10:36:
Subject: for-loop optimization
Yes, you know, in the source code:
int i=0;
while (i<sizeof(foo))
{
... do stuff ...
if (sometimes)
foo = foo[1..];
... do stuff ...
i++;
}
/ Mirar