Re: stashing an array in a hash and yanking it back out

2020-03-15 Thread Vadim Belman
Due to rather weird formatting in your message I hardly can understand what is it all about. But before you can find an answer on how to get the array out of the hash, try answering the following question: why do you use bare asterisk in the hash initialization? What is its purpose over there? T

Re: stashing an array in a hash and yanking it back out

2020-03-15 Thread Andy Bach
>> really means something like {* => (morerocks => [marble sandstone granite chert pumice limestone])} > Taking into account that => has tighter precedence than , what you get in: my %h = *, a => [1,2,3]; > is actually the following data structure: %( Whatever => Pair ) That's sort of what I sai