Help for this page

Select Code to Download


  1. or download this
    package My::Types;
    
    ...
    declare 'OptStr', as Maybe[Str], message {'must be string or nothing'}
    +;
    
    1;
    
  2. or download this
    package My::Class;
    
    ...
    has optional_string_arg  => ( is => 'ro', isa => OptStr );
    
    1;