Programming with Moose/Syntax/override
To override a function use the Moose keyword override
.
override 'target' => &with;
##-or-
override 'target' => sub {};
An Example
Exports to override
super
Super passes the original @_. If you want to alter the args (@_), see around().
Category:Book:Programming with Moose#Syntax/override%20