Help for this page

Select Code to Download


  1. or download this
    use MooseX::Declare
    
    ...
    
      some..methods
    }
    
  2. or download this
    subtype 'MyChildrenCollection' 
    => as 'Collection', 
    where => { $_->isa('Child') }
    
  3. or download this
    has 'children' => (is => 'rw', 'isa' => 'MyChildrenCollection'