Help for this page
use Lexical::Alias; ... alias $that, $this; # $this is now an alias for $that.
alias @x, @y; alias %x, %y;
use Tie::Alias; ... tie $this, 'Tie::Alias', \$that; # $this is now an alias for $that.