Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: Subtracting Lists

by blazar (Canon)
on Jun 02, 2008 at 17:14 UTC ( [id://689718]=note: print w/replies, xml ) Need Help??


in reply to Re: Subtracting Lists
in thread Subtracting Lists

I personally believe that

@y = map { condition($_) ? $_ : () } @x;

is generally spelt

@y = grep { condition($_) } @x;

Of course, you have the condition reversed, but then a ! would do, and I doubt it would impose a considerable penalty in terms of efficience.

--
If you can't understand the incipit, then please check the IPB Campaign.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-03-29 08:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found