caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Lexicographic sort
@ 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
  0 siblings, 2 replies; 4+ messages in thread
From: Francois Pottier @ 2003-01-30 10:00 UTC (permalink / raw)
  To: caml-list; +Cc: François Pottier


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.

-- 
François Pottier
Francois.Pottier@inria.fr
http://pauillac.inria.fr/~fpottier/
-------------------
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


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

end of thread, other threads:[~2003-01-31 12:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-30 10:00 [Caml-list] Lexicographic sort 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 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).