Hi, am I totally wrong that I'd like to use 'handles' like this?
has foo => (
isa => 'Foo',
is => 'rw',
handles => [
'bar',
'baz',
qr/^qu+x$/,
],
);
I think that it's much more readable than creating a complex regex (even
with the 'x' flag) if there are lots of literal method names.
Assuming that my point is valid, a first cut at implementing it is here:
http://github.com/mendel/moose
norbi
