Tagged Questions
The coderef tag has no wiki summary.
7
votes
2answers
160 views
Why am I getting a syntax error when I pass a coderef to this prototyped Perl subroutine?
This is the code:
sub function($&) {
my $param1 = shift;
my $code = shift;
# do something with $param1 and $code
}
If I try to call it like this:
function("whatever") {
print ...
6
votes
3answers
236 views
Why does Perl allow invoking coderefs on unblessed data structures?
When executing the statement $obj->method();, perldiag says that Perl needs to know what package the method belongs to. That's why it needs to be blessed:
Can't call method "%s" on unblessed ...
3
votes
3answers
285 views
Which recommended Perl modules can serialize Moose objects?
I was usually using Storable with nstore, but now I have a module that has CODE and apparently Storable doesn't like that.
I found YAML (and YAML::XS which I can't really get to work).
I also ...
0
votes
5answers
367 views
Is it possible to define anonymous subroutines in a hash constructor in Perl?
Is it possible to define anonymous subroutines in a hash constructor in Perl?
I'm trying to do something like this:
my %array = { one => sub { print "first $_[0]" },
two => ...