On Sun, 2 Sep 2007 02:12:53 -0500
William Neumann < wneumann%40cs.unm.edu">wneumann
cs.unm.edu> wrote:
> Haskell just calls this function 'flip' in its prelude. I find that
> to be a good name.
Thanks a lot William !
So, if Haskell hasn't used any operator, probably we do not need too.
All right for 'flip' : far shorter than 'swap_parameters'.
The list of usually defined operators I've met remains short :
let ( |> ) x f = f x
let ( << ) f g x = f(g x)
Recently seen this on the list :
let (
) f x = f x;;
( for Haskell $ )
and heard about ( >> ) but do not know what it means.
Best,
Fabrice
.