Programming with Moose/Syntax/override

To override a function use the Moose keyword override.

override 'target' => &with;
##-or-
override 'target' => sub {};


An Example edit

Exports to override edit

super edit

Super passes the original @_. If you want to alter the args (@_), see around().