in reply to Re: Why "no Moose?"
in thread Why "no Moose?"
You would be surprised how many people I have seen try to do this:
as a way to dynamically extend a class at runtime, instead of just (correctly) using the MOPMyMooseModule->has(thing => ( ... ));
I suspect to some degree it is because people are too used to the older perl OO frameworks like Class::Accessor which forced you to inherit from itself and therefore made things like $some_object->mk_accessor('foo') possible, even though that is evil and wrong ;)MyMooseModule->meta->add_attribute(thing => ( ... ));
|
|---|