5 ms·
similarly, the 'approaches' pseudo-operator: while (i --> 0) { /* do something */ }
by djcb 15y ago
similarly, the 'approaches' pseudo-operator:
while (i --> 0) {
/* do something */
}
- repsilat 15y agoFor some variety, there's also the left-handed "goes to" operator. while (5 <-- x) {} //omits the zero and the much easier to type while (x --- 0) {} //equivalent to the "-->" operator