Help for this page

Select Code to Download


  1. or download this
    if ($something) {
       ...
    }
    
  2. or download this
    has something => (
       is  => 'ro',
       isa => 'Bool',
    );
    
  3. or download this
    has something => (
       is  => 'ro',
       isa => 'Any', # Bool
    );
    
  4. or download this
    has something => (
       is     => 'ro',
       isa    => Bool->plus_coercions(Any, q{ !!$_ }),
       coerce => 1,
    );