Inside-out objects with moose
version 0.106
package My::Object; use MooseX::InsideOut; # ... normal Moose functionality # or ... package My::Subclass; use MooseX::InsideOut; extends 'Some::Other::Class';
MooseX::InsideOut provides metaroles for inside-out objects. That is, it sets up attribute slot storage somewhere other than inside $self. This means that you can extend non-Moose classes, whose internals you either don't want to care about or aren't hash-based.
Apply the instance metarole necessary for inside-out storage.
dumping (for debugging purposes)
serialization (for e.g. storable)
(your suggestions here)
Hans Dieter Pearcey <[email protected]>
This software is copyright (c) 2011 by Hans Dieter Pearcey <[email protected]>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.