in reply to Introducing Moops

but for those occasions when you want the backing of a meta object protocol,

When is that?

Replies are listed 'Best First'.
Re^2: Introducing Moops
by tobyink (Canon) on Aug 22, 2013 at 06:48 UTC

    The MOP is useful when you need to perform lots of class introspection. It's therefore a requirement for a lot of class-building extensions - i.e. most of the MooseX namespace, such as MooseX::Clone, MooseX::Privacy, MooseX::MultiMethods, etc.

    That is; you probably want to use Moose if there's some MooseX module that catches your eye, or you need to delve into $class->meta; and use Moo otherwise.

    use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name"