On Tue, Mar 10, 2009 at 07:46:51PM +1300, Martin D Kealey wrote:
: I'd like to be able to use grep, map, etc in a currying fashion. Can I do:
: 
:       my &square_list := -> $x { $x * $x }.map();

    my &square_list := &map.assuming(-> $x { $x * $x});

: And if so, what is the signature of &square_list ?

Just (*...@list) or some such.

Larry

Reply via email to