in reply to Re^5: Why doesn't Perl provide %_ as the hash equivalent of @_ in subs? (ugly++)
in thread Why doesn't Perl provide %_ as the hash equivalent of @_ in subs?

In recent versions of Perl there's virtually no performance hit using these variables any more.

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name
  • Comment on Re^6: Why doesn't Perl provide %_ as the hash equivalent of @_ in subs? (ugly++)