Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Preventing autovivification while accessing value

by naikonta (Curate)
on Jan 28, 2008 at 14:44 UTC ( [id://664688]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub somefunc {
      my($self, $context) = @_;
    ...
      # I can work with $form
      ...
    }
    
  2. or download this
    sub is_hash {
      my($hash, @keys) = @_;
    ...
    
      return $yes ? $hash : $yes;
    }
    
  3. or download this
    return 1
      unless my $form = is_hash($self->{config}, 'key1', 'context', $conte
    +xt, 'form');
    
  4. or download this
      $somedata, $key1, $key2, $idx3, $key4 ....;
    
  5. or download this
      my $wanted = 'CODE';
      # if key3 has a value but not a CODE ref, it croaks
      my $code = thefunc($somedata, $wanted, 'key1', 'key2', 'key3');
      $code->(@someargs);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://664688]
Approved by lidden
Front-paged by grinder
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (6)
As of 2024-03-29 01:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found