<div class="gmail_quote">On 14 July 2010 14:28, bearophile <span dir="ltr">&lt;<a href="mailto:bearophileHUGS@lycos.com">bearophileHUGS@lycos.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
(...)<br>
P 10:<br>
In this line of code:<br>
while (!input.empty) {<br>
There is not so much need of using an external function plus a negation:<br>
while (input.length) {<br>
(...)<br></blockquote></div><br>I like writing:<br>  while (!input.empty) {<br>To me, it better shows the meaning of the condition.<br><br>Groet,<br>Tim<br><br>