Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: Understanding the benefit of Given/When ...

by LanX (Saint)
on Mar 04, 2010 at 16:06 UTC ( [id://826731]=note: print w/replies, xml ) Need Help??


in reply to Re: Understanding the benefit of Given/When ...
in thread Understanding the benefit of Given/When ...

So, why even want a continue block on given/when? It's not needed, and isn't consistent.

I see what you mean, maybe I'm still too attached to the concepts of the workaround...(which is easier to understand for me)

Anyway I think you have a plus because you can use last for leaving without executing the continue block.

# using continue-block my @res; for (@test){ push (@res, "abc") if (/abc/); push (@res, "def") && last if (/def/); push (@res, "xyz") && next if (/xyz/); push (@res, "default"); } continue { print "\nFOR/CONT($_):",@res; @res=(); }

OUTPUT:

=== For/Continue FOR/CONT(abc): abc default

Cheers Rolf

Replies are listed 'Best First'.
Re^3: Understanding the benefit of Given/When ...
by JavaFan (Canon) on Mar 04, 2010 at 16:36 UTC
    my @test = qw[abc def ghi xyz]; my @res; for (@test) { when (/abc/) {push @res, "abc"; continue} when (/def/) {push @res, "def"; last} when (/xyz/) {push @res, "xyz"; next} default {push @res, "default"} } continue { print "FOR/CONT($_): @res\n"; @res = (); } __END__ FOR/CONT(abc): abc default
      Sure that works, because one can also combine For/When!

      Cheers Rolf

        Which means you can have your continue block - just spell given as for - you'd save 2 keystrokes as well.

Log In?
Username:
Password:

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

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

    No recent polls found