Help for this page
The arrow does not work on lists nor arrays (it imposes scalar context +, so it operates on the last member or size, respectively):
DB<134> sub multi (\@) { print "@{$_[0]}" } ... DB<139> $h[0][1][2]->$multi() 1 2 3 4 5