In Perl, usando Moo
, puoi implementare around
sottotitoli, che avvolgeranno altri metodi in una classe.
around INSERT => sub {
my $orig = shift;
my $self = shift;
print "Before the original sub\n";
my $rv = $orig->($self, @_);
print "After the original sub\n";
};
Come può essere implementato questo comportamento in Raku , preferibilmente usando un role
?