in reply to RFC: Data::Taxonomy::Tags
Since you asked for any type of feedback, and since I'm not really into this domain, I'll just pick a nit on the first thing I saw ;-)
I'm curious why this isn't just the simpler:use overload '""' => sub { shift->as_string }, fallback => 1;
There may be a reason, but, if so, I'm missing it :-) Thanks.use overload '""' => \&as_string, fallback => 1;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: RFC: Data::Taxonomy::Tags
by Jenda (Abbot) on Jun 23, 2005 at 00:59 UTC | |
Re^2: RFC: Data::Taxonomy::Tags
by The Mad Hatter (Priest) on Jun 23, 2005 at 01:03 UTC |