Comment #1 on issue 129 by [email protected]: For-loop does not work on  
large ranges
http://code.google.com/p/gambas/issues/detail?id=129

A working alternative to the current MUST_CONTINUE-macros would be the  
following pseudo code:

if (val == end) continue loop;
else {
     int sign1 = val < to;
     int sign2 = (step >> 31) & 1;
     if (sign1 != sign2) continue loop;
     else quit loop;
}


------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
Gambas-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to