Help for this page

Select Code to Download


  1. or download this
    has 'age'  => ( 
      is  => 'ro',
    ...
      predicate => 'has_age'
    );
    if ($self->has_age) { ... }
    
  2. or download this
    has 'age'  => ( 
      is  => 'ro',
      isa => 'Str',
      default => '',
    );