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