From: skaller <skaller@users.sourceforge.net>
To: caml-list@yquem.inria.fr
Subject: proposed extenion to patterns
Date: Fri, 09 Mar 2007 13:02:01 +1100 [thread overview]
Message-ID: <1173405721.9499.13.camel@rosella.wigram> (raw)
Pattern matches in Ocaml now allow alternatives within
a branch subject to a restriction that all alternatives
supply the same set of pattern variables (and of the same type).
This is useful but still quite restrictive, for example:
| A (i,j) | B i with j = 1 -> i + j
cannot be coded, because there's no way to introduce
the variable j.
However this isn't really general enough either,
because it can't HIDE variables!
This form looks more general:
| in A (h,k) let i = h and k = k
| in B s let i = s + 1 let k = i
These forms are inverted let/in constructions,
with all the equivalent options (and, rec, and sequence).
The variables h,k in the first alternative are hidden.
The implementation is roughly syntactic sugar:
match x with A (h,k) -> let i = h and k = k in i,k
The 'with' form is a simplification, as is the
usual form.
Any comments on this idea?
--
John Skaller <skaller at users dot sf dot net>
Felix, successor to C++: http://felix.sf.net
next reply other threads:[~2007-03-09 2:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-09 2:02 skaller [this message]
2007-03-09 7:34 ` [Caml-list] " Tom
2007-03-09 10:08 ` Jon Harrop
2007-03-09 11:19 ` skaller
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=1173405721.9499.13.camel@rosella.wigram \
--to=skaller@users.sourceforge.net \
--cc=caml-list@yquem.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