http://www.perlmonks.org?node_id=239997


in reply to Flag variables

How about:
if (grep {$_ eq "foo"} @somearray) { someaction(); }
Or even:
someaction() if grep {$_ eq "foo"} @somearray;

-Blake

Replies are listed 'Best First'.
Re: Re: Flag variables
by jsegal (Friar) on Mar 03, 2003 at 15:34 UTC
    Though it is always good to use built-ins like "grep" whenever possible, in this case there is a difference between this code and the original: In the original, once the test succeeds, it is no longer performed (i.e. last is called), whereas here the test will be performed on every item in the list. If this is a simple equality test, that is not so bad, but if it is something like a database lookup, and the list is long, that is a lot of extra overhead.

    Now if grep were smart enough to shortcut when called in "boolean" context, then there would be no reason not to use it. Of course, "boolean" context per se won't exist until perl 6...

    --JAS
      Now if grep were smart enough to shortcut when called in "boolean" context, then there would be no reason not to use it. Of course, "boolean" context per se won't exist until perl 6...

      Until then, using first from List::Util is one alternative.