On Monday, December 9, 2002, at 10:37 AM, Michael Lazzaro wrote:
Of course, we *could* define piping such that the C<grep> is not necessary:@source >> grep { /foo/ } >> @out; # [5] pure L-to-R
@source >> /foo/ >> @out;
... by saying that a regex or closure in a pipe DWYM. Similar to the way we have the "do-everything" C<given>.
:-)
MikeL