RE: L2R/R2L syntax (was Re: Everything is an object.)

2003-01-08 Thread frederic fabbro
# Rafael Garcia-Suarez [mailto:[EMAIL PROTECTED]] wrote: # frederic fabbro <[EMAIL PROTECTED]> wrote: # > so one can also: # >@keep <~ grep /good/ <~ @list ~> grep /bad!/ ~> @throw; # > # > is this if valid too? # >@b ~> @a <~ @c; # push @a,

RE: L2R/R2L syntax (was Re: Everything is an object.)

2003-01-08 Thread frederic fabbro
# Damian Conway wrote: # @out = sort <~ map {...} <~ grep {...} <~ @a; # # Or, under a special rule for variables on the LHS: # # @out <~ sort <~ map {...} <~ grep {...} <~ @a; Hello, Can one see it as a shell redirection/pipe? This may sound funny, but is the foll