Help for this page

Select Code to Download


  1. or download this
    sub moving (&func, *@data) {
        # Note: "arity" means how many params the sub takes
    ...
    @local_max_3 = moving { max $^x, $^y, $^z } @values;
    # etc.