From: Richard J. <ri...@an...> - 2004-09-28 16:03:44
|
I don't know whether I'm using an old version of extlib, but my version doesn't include these vital functions: let rec takewhile f =3D function [] -> [] | x :: xs when f x -> x :: takewhile f xs | _ -> [] let rec dropwhile f =3D function [] -> [] | x :: xs when f x -> dropwhile f xs | xs -> xs Rich. --=20 Richard Jones. http://www.annexia.org/ http://www.j-london.com/ Merjis Ltd. http://www.merjis.com/ - improving website return on investment If I have not seen as far as others, it is because I have been standing in the footprints of giants. -- from Usenet |