Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^3: Little annoying mistakes ... of others

by szabgab (Priest)
on Dec 28, 2008 at 19:26 UTC ( [id://732913]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Little annoying mistakes ... of others
in thread Little annoying mistakes ... of others

Wow, I am writing down the examples as test cases but I can't figure out why is the second example always true?

could you please explain?

  • Comment on Re^3: Little annoying mistakes ... of others

Replies are listed 'Best First'.
Re^4: Little annoying mistakes ... of others
by jeffa (Bishop) on Dec 29, 2008 at 14:16 UTC

    I think this:

    print "$arg matches\n" if grep $arg, @valid;

    Is equivalent to this:

    print "$arg matches\n" if grep { $arg } @valid;
    So as long as @valid and $arg are not false, then the match will also be true. (If $arg is 0 (zero) then the second example will not always be true.)

    jeffa

    L-LL-L--L-LL-L--L-LL-L--
    -R--R-RR-R--R-RR-R--R-RR
    B--B--B--B--B--B--B--B--
    H---H---H---H---H---H---
    (the triplet paradiddle with high-hat)
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://732913]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-04-16 17:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found