Help for this page

Select Code to Download


  1. or download this
    sub subby(&\@\@)
    {
    ...
    
     @result;
    }
    
  2. or download this
    my @subset = subby { .. logic .. } @A, @B;
    
  3. or download this
    my @subset = subby { .. logic .. } @A, grep { .. logic .. } @B;
    
  4. or download this
    Type of arg 3 to main::subby must be array (not grep iterator) at ./te
    +st line 36, near "@B;"
    
  5. or download this
    my @subset = subby { .. logic .. } @A, (grep { .. logic .. } @B);