Browse thread
Sparse structure
[
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: | Chris King <colanderman@g...> |
| Subject: | Re: [Caml-list] Sparse structure |
On 7/7/05, David Teller <David.Teller@ens-lyon.org> wrote: > What's the problem with just using 'a options ? Most of the values are going to be constant constructors (rather than large pieces of data), so they'll only take up one word anyway. My problem is that I'm going to have hundreds of them, and those hundreds of words is the space I'd like to save. I was thinking of grouping the fields hierarchically in multiple structures, with each one wrapped in an option, but there are reasons I'd rather not do this (mostly because it'd make fields more difficult to access). - Chris