-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Am Freitag, 4. Dezember 2009 18:24:01 schrieb Trevor Daniels:
> David Kastrup wrote Friday, December 04, 2009 4:24 PM
>
> > I've unwrapped a bit of code of the form
> >
> > for (a;b;c) {
> > if (condition)
> >short something
> > else {
> >La
"Trevor Daniels" writes:
> David Kastrup wrote Friday, December 04, 2009 4:24 PM
>>
>> I've unwrapped a bit of code of the form
>>
>> for (a;b;c) {
>> if (condition)
>>short something
>> else {
>>Large something
>> }
>> z
>> }
>>
>> into
>>
>> for (a;b;z,c) {
>> if (condition) {
>>
David Kastrup wrote Friday, December 04, 2009 4:24 PM
I've unwrapped a bit of code of the form
for (a;b;c) {
if (condition)
short something
else {
Large something
}
z
}
into
for (a;b;z,c) {
if (condition) {
short something
continue;
}
Large something
}
which helps a bit k