Browse thread
[Caml-list] "List.index" or "List.unique" functions?
-
Rahul Siddharthan
- Richard Jones
- Martin Jambon
- Benjamin Geer
- Karl Zilles
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Richard Jones <rich@a...> |
| Subject: | Re: [Caml-list] "List.index" or "List.unique" functions? |
On Fri, Apr 30, 2004 at 01:54:29PM -0400, Rahul Siddharthan wrote: > I have a question: suppose I have a list l1, and I want to create a new > list l2 with only one copy of any repeated members of the first list > (eg, l1=[1;2;3;4;3;4;5;6;5] -> l2=[1;2;3;4;5;6]) This is actually another function which could be usefully added to the standard library, along with: frequency : 'a list -> (int * 'a) list (requires input list to be sorted) and group_by, defined by Isaac Trotts here: http://groups.yahoo.com/group/ocaml_beginners/message/1556 Rich. -- Richard Jones. http://www.annexia.org/ http://www.j-london.com/ Merjis Ltd. http://www.merjis.com/ - improving website return on investment http://www.YouUnlimited.co.uk/ - management courses ------------------- 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