Browse thread
[Caml-list] Recursive lists
[
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: | Alex Baretta <alex@b...> |
| Subject: | Re: [Caml-list] Recursive lists |
David Brown wrote: > On Fri, Oct 08, 2004 at 04:42:44PM +0200, Alex Baretta wrote: > >>Keith Wansbrough wrote: > > I doubt that most users of list operations want the extra overhead needed > to check for cycles. Recursive lists are fairly rare in strict languages. I agree. They are very rarely of any use. > Dave I agree. I would not want the overhead in general, unless I knew beforehand that cyclic list are possible. But this is an optimization we can count on so long as we can prove the invariant that our structures are not cyclic. This is obvious in the core language (no Obj), but might not be so if functions linke cycle are available. When the invariant cannot be proven valid for all meaningful input, or when it is known that the input can reasonably be cyclic, then I argue that the standard library should provide some means to manipulate the such structures safely. Of course, a separate Cyclic_list module could be defined to access the cyclic-safe functions, but from an abstract point of view such functions logically belong to List. Alex ------------------- 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