5
votes
Nested for loops in different languages
Using NestedLoops() from Algorithm-Loops which can be used in different ways (calling a code ref or returning an iterator). …
5
votes
How do I reference a scalar in a hash reference in Perl?
\$bar->{baz}
should work.
E.g.:
my $foo;
$foo->{bar} = 123;
my $bar = \$foo->{bar};
$$bar = 456;
print "$foo->{bar}\n"; # prints " …
7
votes
How do I call a function name that is stored in a hash in Perl?
Foo->${\$hash{func}};
But for clarity, I'd probably still write it as:
my $method = $hash{func};
Foo->$method;
…
