in reply to How do I get a reference to a builtin function?

I'd say:
my %op = ( 'toupper'=>sub{uc(@_)}, ... );
instead of shift

Replies are listed 'Best First'.
Re: Answer: How do I get a reference to a builtin function?
by moritz (Cardinal) on Dec 08, 2009 at 11:25 UTC
    Please test your code before you offer it as a solution:
    $ perl -wE 'my $t = sub { uc(@_)}; say $t->("foo")' 1

    uc has a prototype which forces scalar context, so uc(@_) evaluates to the number of elements in @ (upper-cased).

    Perl 6 - links to (nearly) everything that is Perl 6.