Larry Wall wrote:

As for assignment-op forms, in the current "STD" grammar, feeds are
not currently even considered operators, but statement separators, so
there is no possibility of using them in an assignment metaoperator
(or any other metaoperator, for that matter).

Feeds as a reduction could be an interesting concept: I think that the following would allow us to create an arbitrary-length pipeline of concurrent lambda processes:

  my @ops = { $_**2 }, { $_+1 }, { $_/2 };
  my @in = 1,2,3;

  [==>] @in, [EMAIL PROTECTED], @out;

  is_deeply @out, [1,2,5], "chain of ops".

Reply via email to