![]() |
![]()
| ![]() |
![]()
NAMEMooseX::Clone - Fine-grained cloning support for Moose objects. VERSIONversion 0.06 SYNOPSISpackage Bar; use Moose; with qw(MooseX::Clone); has foo => ( isa => "Foo", traits => [qw(Clone)], # this attribute will be recursively cloned ); package Foo; use Moose; # this API is used/provided by MooseX::Clone sub clone { my ( $self, %params ) = @_; # ... } # used like this: my $bar = Bar->new( foo => Foo->new ); my $copy = $bar->clone( foo => [ qw(Args for Foo::clone) ] ); DESCRIPTIONOut of the box Moose only provides very barebones cloning support in order to maximize flexibility. This role provides a "clone" method that makes use of the low level cloning support already in Moose and adds selective deep cloning based on introspection on top of that. Attributes with the "Clone" trait will handle cloning of data within the object, typically delegating to the attribute value's own "clone" method. TRAITS
METHODS
TODORefactor to work in term of a metaclass trait so that "meta->clone_object" will still do the right thing. THANKSclkao made the food required to write this module AUTHORיובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2008 by יובל קוג'מן (Yuval Kogman). This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|