Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Switch/case as a jump table with C-style fall-through

by dragonchild (Archbishop)
on May 12, 2005 at 13:18 UTC ( [id://456376]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    switch (i) {
        0,1: foo();
        2: bar(); break;
        3: baz(); break;
    };
    
  2. or download this
    my $switch = Switch->new(
        [ '5', sub {} ], # Matches '005'
    ...
        [ sub { $foo->bar( @_ ) }, sub {} ] # coderef
        [ 1 .. 3, 8 .. 20, sub {} ] # Multiple cases
    );
    

Log In?
Username:
Password:

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

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

    No recent polls found