[Haskell-cafe] Re: Gluing pipes

2008-12-05 Thread Stefan Monnier
\ x y - f (g x) (h y) [...] f $. g ~ h ~ id I keep help wonder: other than a 5 chars, what is it we have gained? Stefan ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Re: Gluing pipes

2008-12-05 Thread Bulat Ziganshin
Hello Stefan, Friday, December 5, 2008, 8:35:18 PM, you wrote: \ x y - f (g x) (h y) [...] f $. g ~ h ~ id I keep help wonder: other than a 5 chars, what is it we have gained? Haskell programmers would be paid more :D -- Best regards, Bulatmailto:[EMAIL

Re: [Haskell-cafe] Re: Gluing pipes

2008-12-05 Thread Matt Hellige
On Fri, Dec 5, 2008 at 11:35 AM, Stefan Monnier [EMAIL PROTECTED] wrote: \ x y - f (g x) (h y) [...] f $. g ~ h ~ id I keep help wonder: other than a 5 chars, what is it we have gained? Certainly in such a simple case, there's no benefit. In more complex cases, especially where we're

[Haskell-cafe] Re: Gluing pipes

2008-12-04 Thread Johannes Waldmann
I'd like to be able to write something like: \ x y - f (g x) (h y) I don't think mathematicians have great notation for it either Well, there is Combinatory Logic. http://www.haskell.org/haskellwiki/Combinatory_logic J.W. ___