Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Re: One-liners: Conditionals in Loops

by TheDamian (Vicar)
on Nov 05, 2003 at 04:12 UTC ( [id://304619]=note: print w/replies, xml ) Need Help??


in reply to Re: One-liners: Conditionals in Loops
in thread One-liners: Conditionals in Loops

I believe that Perl 6 will have this feature.
I'm not so sure. Every time the topic has been raised, Larry has remained steadfastly adamant that stackable qualifiers won't be added to Perl 6.

Of course in Perl 5 you can already do this:

# Perl 5 do{print "$_\n" if /pattern/} for @arr;
at the cost of four extra characters. And that would probably be reduced to two extra characters in Perl 6, given the new "every-block-is-a-closure" semantics:
# Perl 6 {print "$_\n" if /pattern/} for @arr;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-25 07:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found