The improvement of using roles (Moo::Role or Role::Tiny or whatever)
with qw(
Some::Role
Some::Other::Role
);
...
some_roles_method();
over just explicitly importing the function from the mixin class
use Some::Role qw/some_roles_method/;
...
some_roles_method();
are numerous, and include added flexibility, less bookkeeping (especially if there are a lot of methods being imported), and not overwriting existing methods.
But a big drawback is if you're reading the code and come across mentions of some_roles_method()
and you want to read the function, it's not immediately apparent where to go. All you can tell is that it's not defined in this file.
Are there any good strategies for handling that? Am I the only one that bothers?
The only thing I can think of, and that I do once in a while, is to document everything thoroughly with POD. But of course that requires a lot of discipline.