From: Alessandro Baretta <alex@baretta.com>
To: Xavier Leroy <xavier.leroy@inria.fr>
Cc: Ocaml <caml-list@inria.fr>
Subject: Re: [Caml-list] Has laziness changed type?
Date: Mon, 09 Sep 2002 16:59:14 +0200 [thread overview]
Message-ID: <3D7CB742.5030908@baretta.com> (raw)
In-Reply-To: <20020909162320.D1781@pauillac.inria.fr>
Xavier Leroy wrote:
>
> An abstract type. You don't want to know :-) More seriously: in
> 3.06, the compiler and runtime system represent lazy values more
> efficiently; in particular, the "Value of" indirections present in
> 3.04 are now shortened by the GC whenever possible. As a consequence,
> the representation of lazy values no longer matches that of a Caml datatype.
Cool!
>>Can I apply pattern-matching on it?
>
>
> No. The general "contract" of a lazy value is that you should never
> have to distinguish whether it's been evaluated already or not. Just
> perform Lazy.force on the lazy value and match on the result.
>
> - Xavier Leroy
This is a pity, in a way, but not really a big problem. I
often need to check whether a given lazy value corresponds
computes a meaningful value or raises an exception. To do
this I had code like the following
let foo = lazy ( bar () )
let _ = try ignore (Lazy.force foo) with _ -> () in
match foo with Value(x) -> ...
Exception(x) -> ...
This is not terribly useful when you have to match against
only one lazy value, but the situation is different when you
have a tuple of lazy values, and need to perform different
actions depending on which subset of them computes a
meaningful value.
I solved my problem by reworking the code. It was not too
much effort after all, but my code lost its former elegance:
match foo, bar, doh with
| Value(foo), _, _ -> ...
| _, Value(bar), _ -> ...
| _, _, Value(doh) -> ...
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
next prev parent reply other threads:[~2002-09-09 14:50 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-09-07 22:24 Alessandro Baretta
2002-09-09 14:23 ` Xavier Leroy
2002-09-09 14:59 ` Alessandro Baretta [this message]
2002-09-09 15:00 ` John Prevost
2002-09-09 15:25 ` [Caml-list] Has laziness changed type? (with a plea to Xavier...) Alessandro Baretta
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3D7CB742.5030908@baretta.com \
--to=alex@baretta.com \
--cc=caml-list@inria.fr \
--cc=xavier.leroy@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox