Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^4: what would you like to see in perl5.12?

by blazar (Canon)
on Aug 21, 2007 at 17:47 UTC ( [id://634151]=note: print w/replies, xml ) Need Help??


in reply to Re^3: what would you like to see in perl5.12?
in thread what would you like to see in perl5.12?

START blocks provide "do once" capability in Perl 6.

Whoa! I will stop complaining like whatever the common English idiom for a recurring, annoying and insisting whiner is.

Would someone care how it would apply to the original (Perl 5) example?

while ( <FH> ) { next if $_ eq 'foo'; # Where foo can only appear once in the file print; }

Replies are listed 'Best First'.
Re^5: what would you like to see in perl5.12?
by TimToady (Parson) on Aug 21, 2007 at 18:31 UTC
    That's not a "do once", that's a "test true once". So you'd want something more like a flipflop operator:
    next if ($_ eq 'foo') ff False;
    Presumably the compiler can recognize that the False test will never be true.

    Those parens bother me though. Maybe the flipflop should be of looser precedence...say, the same precedence as ??!! perhaps... Hmm...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (1)
As of 2024-04-25 03:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found