Tagged Questions
5
votes
4answers
2k views
What's the difference between a hash and hash reference in Perl?
I would like to properly understand hashes in Perl. I've had to use Perl intermittently for quite some time and mostly whenever I need to do it, it's mostly related to text processing.
And everytime, ...
3
votes
4answers
2k views
What does `$hash{$key} |= {}` do in Perl?
I was wrestling with some Perl that uses hash references.
In the end it turned out that my problem was the line:
$myhash{$key} |= {};
That is, "assign $myhash{$key} a reference to an empty hash, ...
-4
votes
1answer
160 views
Passing hash reference to multiple functions in Perl
I have following code in Perl where a hash reference is passed from main function to func1 and then to func2. In func2 hash is updated. I want to access the updated hash in main function. Also there ...