From: "Jeff Henrikson" <jehenrik@yahoo.com>
To: <caml-list@inria.fr>, <jprevost@panasas.com>
Subject: [Caml-list] C style for loop
Date: Thu, 11 Oct 2001 01:47:07 -0400 [thread overview]
Message-ID: <004001c15218$29c42e20$0b01a8c0@mit.edu> (raw)
Okay, so maybe I should be more specific about what I want in a "C-style for loop." Its readablity merits are hopefully self
evident. Well, unless you're a compulsive CPS addict who wishes even his grocery list could be written to tail recurse. . .
Suppose
(* loop var | init val | while | expr for next val *)
for c 0 (c<10) (c+1) do
(* bla *)
done;
desugars into:
let rec iter_gensymXXX c =
(* bla *)
let c = (c+1) in
if (c<10) then iter_gensymXXX c else ()
in
iter_gensymXXX 0
Then we could write nice readable nested loops for square arrays, etc. And then there's the canonical loop form which enters in a
place different from the exit test. For that, C style "break" is a readable idiom:
for c 0 true c do
(* bla1 *)
let c = c+1 in
if !(c<10) then break;
(* bla2 *)
end;
could desugar into:
let rec iter_gensymXXX c =
(* bla1 *)
let c = c+1 in
if !(c<10) then
()
else begin
(* bla2 *)
let c = c in
if true then iter_gensymXXX c else ()
end
in
iter_gensymXXX 0
The transformation for "continue" is similar.
Pardon my laziness, camlp4 looks really cool, but I haven't taken the time to learn it. For the time being, if somebody has
already written a macro kind of like this, I'll take it. IMHO it would be a boon to the caml community to have a standard form for
this. Even if it were only a "style guide" addition or what have you.
Jeff Henrikson
-------------------
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
next reply other threads:[~2001-10-11 5:34 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-10-11 5:47 Jeff Henrikson [this message]
2001-10-11 8:58 ` Daniel de Rauglaudre
2001-10-11 18:05 ` [Caml-list] Thanks: " Jeff Henrikson
2001-10-11 12:47 ` [Caml-list] " Berke Durak
2001-10-11 13:11 ` Bruce Hoult
2001-10-11 13:34 Damien Doligez
2001-10-11 13:43 ` Bruce Hoult
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='004001c15218$29c42e20$0b01a8c0@mit.edu' \
--to=jehenrik@yahoo.com \
--cc=caml-list@inria.fr \
--cc=jprevost@panasas.com \
/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