From: Luc Maranget <luc.maranget@inria.fr>
To: lvibert@irisa.fr (Laurent Vibert)
Cc: francois.pottier@inria.fr (Francois Pottier), caml-list@inria.fr
Subject: Re: [Caml-list] Lexicographic sort
Date: Fri, 31 Jan 2003 13:25:11 +0100 (MET) [thread overview]
Message-ID: <200301311225.NAA0000025694@beaune.inria.fr> (raw)
In-Reply-To: <Pine.LNX.4.44.0301311125560.15394-100000@cafe.irisa.fr> from "Laurent Vibert" at jan 31, 2003 11:33:34
>
> On Thu, 30 Jan 2003, Francois Pottier wrote:
>
> >
> > Hi,
> >
> > I just found a nice way of writing lexicographic sort in O'Caml
> > using Luc Maranget's recent extension of pattern syntax, which
> > allows a single identifier to be bound in several alternatives.
> >
> > For instance, here is code that sorts integer triples:
> >
> > let compare (major1, middle1, minor1) (major2, middle2, minor2) =
> > match major1 - major2, middle1 - middle2, minor1 - minor2 with
> > | 0, 0, d
> > | 0, d, _
> > | d, _, _ ->
> > d
> >
> > Quite beautiful. Perhaps this is obvious to many, but I thought
> > I'd post it.
> >
>
> Warning, from the Caml manual,
> http://pauillac.inria.fr/ocaml/htmlman/manual014.html
> ``Or'' patterns :
> If both matchings succeed, it is undefined which set of bindings is
> selected
>
> eg. if (0,0,d) and (d,_,_) succeed, you don't hnow the result...
> yes in this case, it works, but in some other, it doesn't :
> let f = function (_::l) | l -> l
> in f [1;2]
>
Well, Francois's example is a good incentive to suppress this
undefined matching order.
In fact, matching is left-to-right, except when one of the
alternatives is a variable (or an underscore). I have a loose agenda
to enforce left-to-right matching order, and Francois's code won't be
broken by future versions.
Again this undefined matching order in or-patterns is a mistake of mine
and it should be corrected.
--Luc
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
prev parent reply other threads:[~2003-01-31 12:25 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-01-30 10:00 Francois Pottier
2003-01-30 10:02 ` [Caml-list] " Francois Pottier
2003-01-31 10:33 ` [Caml-list] " Laurent Vibert
2003-01-31 12:25 ` Luc Maranget [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200301311225.NAA0000025694@beaune.inria.fr \
--to=luc.maranget@inria.fr \
--cc=caml-list@inria.fr \
--cc=francois.pottier@inria.fr \
--cc=lvibert@irisa.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox