Help for this page

Select Code to Download


  1. or download this
    sub any (&@) {
        my $code_ref = shift;
        unshift @_, 0;
        reduce { $a or $code_ref->(local $_ = $b) } @_;
    }
    
  2. or download this
    sub any (&@) {
        my $code_ref = shift;
        reduce { $a or $code_ref->(local $_ = $b) } 0, @_;
    }