Help for this page

Select Code to Download


  1. or download this
    autodie::hints->set_hints_for(
      \&foo,
    ...
      'open',
      any => sub { ! defined },
    );
    
  2. or download this
    use autodie::hints qw/ DEFAULT_SCALAR DEFAULT_LIST /;
    autodie::hints->set_hints_for(
    ...
      \&foo,
      any => sub { &COND1 and &COND2 or &COND3 },
    );