On Tue, Dec 04, 2001 at 06:03:52PM +1000, Allan Rae wrote:
> Because by "any length" I also meant really simple stuff like for
> example:
> 
>       if (p
>           && !p->empty()) {
>       }

I find this much more disruptive to read than

        if (p && !p->empty()) {
        }

Actually, this is strange, since I usually favour "linear" code, i.e.
something that basically goes top down. But I probably look at a
condition as something "atomic", a single idea...

Andre'

-- 
André Pönitz .............................................. [EMAIL PROTECTED]

Reply via email to