There's also the fancy-app, curly-fn, and afl packages for different ways of 
writing anonymous functions (cut and cute from srfi/26 always seemed awkward to 
me).

cut:
(cut map sqr <>)

fancy-app:
(map sqr _)

curly-fn
 #{map sqr %}

afl:
#λ(map sqr %)

point-free doesn't give you special syntax for writing functions, ~> is just a 
regular procedure. So it works with all of them. (Disclaimer: I wrote the 
point-free package)

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to