Browse thread
Re: list module with O(1) append function
- Jeffrey Loren Shaw
[
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: | Jeffrey Loren Shaw <shawjef3@m...> |
| Subject: | Re: list module with O(1) append function |
tail-rec cons: let cons a l = Append ([a], l) Also, me and zmdkrbou at freenode.net #ocaml are wondering what exactly the performance characteristics of this list module are. Specifically, when the lists are constructed only using library functions.