in reply to Re: Concept map of data types
in thread Concept map of data types
I added your example to the concept map. It is a good another example of array of arrays. Also, I wrote and added this lines to the section 'HASH OF HASHES WITH LISTS OF VALUES'
I found useful 'perldoc perl...', till time I was searching for any info in the Internet.push @{$ref->{'key1'}->{'key2'}}, "@{$adds}"; # anonymous array: $adds = ["e","f"]; print "@{$ref->{'key2'}->{'key'}}"; # output: c d e f
|
---|