http://www.perlmonks.org?node_id=1000321


in reply to Re^3: How to call a sub-routine ref
in thread How to call a sub-routine ref

There's actually nothing special about undef. Any scalar will do, including references.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^5: How to call a sub-routine ref
by Corion (Patriarch) on Oct 22, 2012 at 12:44 UTC

    ... which doesn't make the documentation any less misleading :). I could assume Perl to raise an error if an unblessed reference or a string not specifying a class name appear on the LHS of the arrow operator. Maybe reformulating it as follows makes it match more closely the behaviour:

    Otherwise, the right side is a method name or a simple scalar variable containing the method name, and the left side must be either an object (a blessed reference) or a class name (that is, a package name), see perlobj. As a third case, if the right side is a subroutine reference, the subroutine will be called with the left side unshifted on the parameter list.

      That makes it sound like the left side is only unshifted onto the parameter list in the third cases, but actually it's unshifted in all three cases.

      Also, I'd cut out the talk of classes and just say it needs to be a package name. For example, File::Spec is not a class in the normal sense of the word, but it's a package name that can appear on the left side of the arrow.

      Here's my attempt at explaining ->...

      Otherwise the right side is a bareword method name, or a simple scalar variable containing a method name or coderef. The left side will be evaluated in scalar context and unshifted onto the parameter list, and then the method or coderef will be called. Except where the right side is a coderef, the left side must evaluate to an object (a blessed reference, see perlobj) or a package name - otherwise method resolution (i.e. determining the code to run given a method name) will fail.

      perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'