Help for this page

Select Code to Download


  1. or download this
    sub add_pet {
      state $check = compile_named(
        name    => Str,
    ...
    
      ...; # do stuff with $args hashref
    }
    
  2. or download this
    my $type = CycleTuple[Str, ArrayRef, Int];
    $type->assert_valid( [ "foo", [], 42, "bar", [], 21 ] );  # ok
    $type->assert_valid( [ "foo", [], 42, "bar", [], 2.1 ] ); # throws exc
    +eption