caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* Having '<<', why to use '|>' ?
@ 2007-09-17 14:36 Fabrice Marchant
  2007-09-17 18:59 ` [Caml-list] " Eric Cooper
  2007-09-17 22:24 ` Julien Moutinho
  0 siblings, 2 replies; 20+ messages in thread
From: Fabrice Marchant @ 2007-09-17 14:36 UTC (permalink / raw)
  To: caml-list

 Hello !

For f1 and f2 composable functions, writing :   

let ( << ) f g x = f (g x)

let g1 = f2 << f1

let ( |> ) x f = f x

let g2 = fun x ->
               x
            |> f1
            |> f2  

I usually use '<<' and wonder if we can always supersede '|>' by this operator ?
g1 and g2 are same functions ( not true ? ).
Does it exists a case where the use of '|>' is better ?

Thanks,

 Fabrice
-----------------------------------
Force est de constater que mon post sur Lucky et Camel n'a pas fait un tabac...


^ permalink raw reply	[flat|nested] 20+ messages in thread
* Re: [Caml-list] Having '<<', why to use '|>' ?
@ 2007-09-20 14:39 Aaron Bohannon
  2007-09-22 15:22 ` Nicolas Pouillard
  0 siblings, 1 reply; 20+ messages in thread
From: Aaron Bohannon @ 2007-09-20 14:39 UTC (permalink / raw)
  To: caml-list

It's too bad that $ is reserved for Camlp4.  It would be a natural
choice for infix application since that's what Haskell uses.

I have used the following notations for function composition in the past:

let ( |> ) f g x = g (f x)
let ( <| ) f g x = f (g x)

I am glad that those are natural to other people, too.  I also like to
be able to compose predicate functions.  Does anyone have better ideas
than what is below?

let ( &&& ) p q x = p x && q x
let ( ||| ) p q x = p x || q x
let ( !!! ) p x = not (p x)

One can also define "%" to do Python-esque string construction,
although using it with more than one argument requires a nice operator
for infix application.

let ( % ) f x = Format.sprintf f x

"(%c, %n, %s, %b)" % 'a' @@ 12 @@ "hello" @@ true

"@@" isn't looking so nice to me here.

And an operator that is very useful (almost essential) in certain
situations is a monadic "bind" in the list monad:

let ( >>@ ) xs f = List.flatten (List.map f xs)

I chose "@" as a reference to the list concatenation operator.

Are there any others?  Are there better ideas or warnings about the
ones I have here?

-Aaron

> ---------- Forwarded message ----------
> From: Fabrice Marchant <fabrice.marchant@orange.fr>
> To: caml-list@yquem.inria.fr
> Date: Tue, 18 Sep 2007 16:12:46 +0200
> Subject: Re: [Caml-list] Having '<<', why to use '|>' ?
>   Thanks Julien !
>
> > Have a look at this:
> >       http://caml.inria.fr/pub/docs/manual-ocaml/lex.html#infix-symbol
> > With the keywords below.
> "Note that the following identifiers are keywords of the Camlp4 extensions and should be avoided for compatibility reasons.
>
>     parser    <<    <:    >>    $     $$    $:
> "
> So no doubt, I'll edit my old programs and replace "<<".
>
> > > ... a composition operator ... ( <<< ) ?
> > > What else ?
>
> > I would personally double the '@':
> >       let (@@) f g x = f @ g x
>
>  ( or f (g x) : it is practically the same thing. )
>
> A 3 chars operator (<<<) doesn't look smart. Simpler is better.
> However, about (@@), I preferred to see the direction of the asymmetric composition operator.
> ( <| ) instead of ( << ) ? Is this a possible idea ?
>
>   But maybe your idea is good. Maths use a kind of small 'o' : (f o g) (x) = f (g (x)).
> It's symmetric like (@@), and that doesn't raise any problem.
>
> Cheers,
>
> Fabrice


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2007-09-22 23:53 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-17 14:36 Having '<<', why to use '|>' ? Fabrice Marchant
2007-09-17 18:59 ` [Caml-list] " Eric Cooper
2007-09-17 19:45   ` Fabrice Marchant
2007-09-17 22:24 ` Julien Moutinho
2007-09-18  5:39   ` Fabrice Marchant
2007-09-18  8:53     ` Julien Moutinho
2007-09-18  9:09       ` Julien Moutinho
2007-09-18 14:12       ` Fabrice Marchant
2007-09-18 16:42         ` Jon Harrop
2007-09-18 20:41           ` skaller
2007-09-19 19:49           ` Fabrice Marchant
2007-09-19 21:56             ` Vincent Aravantinos
2007-09-20 13:42             ` Ashish Agarwal
2007-09-20 18:37               ` Gabriel Kerneis
2007-09-21 20:58               ` Harrison, John R
2007-09-21 21:44                 ` Karl Zilles
2007-09-20 14:39 Aaron Bohannon
2007-09-22 15:22 ` Nicolas Pouillard
2007-09-22 15:43   ` Daniel Bünzli
2007-09-22 23:55     ` Christian Stork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).