I would like to use $a and $b variables in my anonimous binary functions like it is done in sort {$a <=> $b} (1, 2, 3) but I can not figure out why code like

#!/usr/bin/env perl
use strict;
use warnings;

Foo::Bar(sub { $a + $b });

package Foo;
sub Bar {
    my ($function) = @_; 

    for my $i (1, 2, 3) {
        local ($a, $b) = ($i, $i);
        print $function->() . "\n";
    }
}    

does not work. While

#!/usr/bin/env perl
use strict;
use warnings;

Foo::Bar(sub { $_ });

package Foo;
sub Bar {
    my ($function) = @_; 

    for my $i (1, 2, 3) {
        local $_ = $i;
        print $function->() . "\n";
    }
}

works fine.

What am I doing wrong?

link|improve this question

feedback

1 Answer

up vote 12 down vote accepted

$a and $b are special package variables. You're calling Foo::Bar from within your main package, so you need to set $main::a and $main::b to get it to work. You can use caller to get the name of the calling package. This should work:

#!/usr/bin/env perl
use strict;
use warnings;

Foo::Bar(sub { $a + $b });

package Foo;
sub Bar {
    my ($function) = @_; 
    my $pkg = caller;

    for my $i (1, 2, 3) {
        no strict 'refs';
        local *{ $pkg . '::a' } = \$i;
        local *{ $pkg . '::b' } = \$i;
        print $function->() . "\n";
    }
}    
link|improve this answer
7  
+1. I think this is extremely bad practice though. – flesk Jan 2 at 18:53
IMHO, it's OK if you want to create a sort-like function that takes a block; but that function should only return values and not print stuff, obviously. This is fine as a demonstration though. – friedo Jan 2 at 18:59
4  
That's true. I suspect the OP doesn't really know what he's doing though, and would be better off with sub {$_[0] + $_[1]} and $function->($i, $i). – flesk Jan 2 at 19:05
Thank you! I think I will use $_[i] =) And $_ is special variable? – alexanderkuk Jan 2 at 19:57
2  
Look at the source for List::MoreUtils for some examples in the wild – Joel Berger Jan 3 at 3:03
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.