Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Is it possible to use key/values of a Hash/Hash ref while it's being initialized?

by goldclaw (Scribe)
on Sep 15, 2005 at 08:45 UTC ( [id://492138]=note: print w/replies, xml ) Need Help??


in reply to Is it possible to use key/values of a Hash/Hash ref while it's being initialized?

One way is to put in a subroutine to create the inner hash for you. If you prefer to have everything located inside the map, thats easy using an anonymous sub:
my %hash = map {$_ => { sub { key1 => $_[0], key2 => alter($_[0]) }->('longstring'.$_.'more') } } @list;
To answer your original question, in short: no. Before its initialized there is nothing there to use.

Basically you assign a list to the hash, and that list has to be constructed before it can be assigned, and its while you are constructing this list that you want to use one of its earlier elements to create a later one. Using a sub, you can create the element in question first(when providing the arguments to the sub call), and then create the list.

  • Comment on Re: Is it possible to use key/values of a Hash/Hash ref while it's being initialized?
  • Download Code

Log In?
Username:
Password:

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

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

    No recent polls found