Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Iterating over verbatim hash reference

by ikegami (Patriarch)
on Jan 21, 2010 at 19:16 UTC ( [id://818798]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    {   my %h = ( x=>5, y=>8 );
        while ( my ($r,$s) = each %h ) {
            ...
        }
    }
    
  2. or download this
    for ({ x=>5, y=>8 }) {
        while ( my ($r,$s) = each %$_ ) {
            ...
        }
    }
    
  3. or download this
    for (paired( x=>5, y=>8 )) {
        my ($r,$s) = @$_;
        ...
    }
    
  4. or download this
    sub paired {
        my @pairs;
        push @pairs, [ shift, shift ] while @_;
        return @pairs;
    }
    
  5. or download this
    paired {
        my ($r,$s) = @_;
        ...
    } ( x=>5, y=>8 );
    
  6. or download this
    sub paired(&@) {
        my $cb = shift;
    ...
        push @rv, $cb->(shift, shift) while @_;
        return @rv;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-25 21:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found