On 14 July 2010 14:28, bearophile <bearophileh...@lycos.com> wrote:

> (...)
> P 10:
> In this line of code:
> while (!input.empty) {
> There is not so much need of using an external function plus a negation:
> while (input.length) {
> (...)
>

I like writing:
  while (!input.empty) {
To me, it better shows the meaning of the condition.

Groet,
Tim

Reply via email to