In perl.git, the branch sprout/postderef has been created
<http://perl5.git.perl.org/perl.git/commitdiff/670c3668642401eb841d9406d96e6cb3bc1a1716?hp=0000000000000000000000000000000000000000>
at 670c3668642401eb841d9406d96e6cb3bc1a1716 (commit)
- Log -----------------------------------------------------------------
commit 670c3668642401eb841d9406d96e6cb3bc1a1716
Author: Father Chrysostomos <[email protected]>
Date: Fri Jul 5 01:10:08 2013 -0700
Postfix dereference syntax
$_->$* means $$_ (and compiled down to the same op tree)
$_->@* means @$_ ( ditto ditto blah blah blah )
$_->%* means %$_ (...)
$_->&* means &$_
$_->** means *$_
$_->@[_] means @$_[_]
$_->@{_} means @$_{_}
$_->&*() means &$_(), which means $_->() (pointless)
I forgot $_->*{HASH}.
-----------------------------------------------------------------------
--
Perl5 Master Repository