I see a difference between this and the any() / all() usage. How would you do
if (all(@results)) { ... }
using the
if (x & y & z) { ... }
style of coding it?
/me is asking a question just in case I am missing something, since I don't see the relation between the two styles. One can process a list, the other cannot.
--MidLifeXis
In reply to Re^3: An infix fix
by MidLifeXis
in thread An infix fix
by tlm
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |