On Sunday 21 May 2006 13:54, Leopold Toetsch wrote:

> That's still no sign of providing multi invocants

From S06:

    sub foo($x, $y, $z) {...}    # expects three scalars

  ...

  To flatten before the list is even passed into the subroutine, use the eager
  list operator:

    foo([,] eager @onetothree);          # array flattened before &foo called

-- c

Reply via email to