Galchin, Vasili wrote:
> my knowledge of point-free is from category theory. in what sense is
> Haskell point-free handle namespace pollution?

In the sense that you can write e.g.

  f = g . h

instead of

  f x = g (h x)

thereby avoiding the need to give a name the argument to f.

Cheers
Ben

BTW,
A: No.
Q: Should I include quotations after my reply?

_______________________________________________
Haskell-Cafe mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to