caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Don Syme" <dsyme@microsoft.com>
To: <caml-list@inria.fr>
Subject: [Caml-list] Multi-matches & "when", also binding values in "when" clauses
Date: Tue, 3 Apr 2001 05:54:16 -0700	[thread overview]
Message-ID: <0C682B70CE37BC4EADED9D375809768A48FD8B@red-msg-04.redmond.corp.microsoft.com> (raw)


Some questions on pattern matching....

1. - Multi-matches & "when"

I've just discovered that one can write

match x with
  | C _   | D _ -> ...
  | E | F -> ...

to catch multiple patterns by single cases.  However, if you guard the
patterns with "when" clauses, you must guard all the patterns att once

match x with
  | C _   | D _ when !foo = 3 -> ...
  | E | F -> ...

Here the "when" clause covers matches against both C and D.  Is there
any good reason for this?  It seems reasonable to be able to write

match x with
  | C _  when !foo = 4 | D _ when !foo = 3 -> ...
  | E | F -> ...

Are there any plans for this?


2. - Multiple binding in patterns

It would sometimes be nice to bind variables twice in different
patterns, as in 

match x with
  | C y | D y -> ...
  | E | F -> ...

Are there any plans for this?


3. Binding values in "when" clauses

It would be very nice to be able to bind things in the "when" clauses
and have them visible on the r.h.s.

match x with
  | C y  in 
      let z = y + 4 in 
      when !foo = z -> f z
  | D _ -> ...


Are there any plans in the work for these sorts of extensions?
Cheers,
Don

-------------------
To unsubscribe, mail caml-list-request@inria.fr.  Archives: http://caml.inria.fr


             reply	other threads:[~2001-04-03 12:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-04-03 12:54 Don Syme [this message]
2001-04-03 13:00 ` Nicolas barnier
2001-04-03 15:06 ` Luc Maranget
2001-04-03 17:57 ` Pierre Weis

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=0C682B70CE37BC4EADED9D375809768A48FD8B@red-msg-04.redmond.corp.microsoft.com \
    --to=dsyme@microsoft.com \
    --cc=caml-list@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;
as well as URLs for NNTP newsgroup(s).