Help for this page

Select Code to Download


  1. or download this
    package Identity;
    use Moose;
    ...
                         default => sub {$_[0]->first_name.' '.$_[0]->last
    +_name},
                        );
    
  2. or download this
    has 'full_name'  => (
                         isa => 'full_name_type',
    ...
                                        B => 'last_name',
                                        with => 'A B',
                                       },