in reply to Re^3: Dynamically adding methods to Moo class
in thread Dynamically adding methods to Moo class

Thank you, Tobyink. That's what I meant with "Or do I have to tweak with the symbol table?" in my initial question. I thought that this kind of functionality is somewhere accessible in a more "formal" manner. A kind of:

install_method('method_name', sub {});

Best regards
McA

Replies are listed 'Best First'.
Re^5: Dynamically adding methods to Moo class
by Arunbear (Prior) on Apr 24, 2014 at 12:51 UTC
    Not part of Moo, but ...
    use Sub::Install; Sub::Install::install_sub({ code => sub { ... }, into => $package, as => $subname });
    Link: Sub::Install