In some CAS's (Sage, Maxima), the "lambda" construct is used for an
anonymous function:

p=prime_range(30)
map(lambda x:x^2+1,p)

whereas in others, an arrow notation is used:

map(x->x^2+1,p) (Maple, MuPAD)
map(x+->x^2+1,p) (Axiom)

I'm very fond of the convenience of arrow notation.  Would it be very
hard to incorporate such a notation into the Sage parser?

Thanks,
Alasdair

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to