Sam Vilain wrote:
> No. All I'm saying is that this sort of construct:
>
> *{$_} = \&{"Class::$_"} foreach (qw(method method2 method3));Like mixins? Perhaps something like this: class My::Class; mixin My::Random::Number::Generator qw( rand ); mixin My::Serialisation::Marshall qw( freeze thaw ); # ...class def... A
