Attribute delegation
- An (overly) complex example:
has 'logger' => (
is => 'ro',
isa => 'My::Custom::Logger',
required => 1,
handles => qr/^log_.*/,
);
- All methods (matching the given regexp) are added to the class.