From: Pixel <pixel@mandrakesoft.com>
To: "Diego Olivier Fernandez Pons" <FernandezPons@iFrance.com>
Cc: "Caml" <caml-list@inria.fr>
Subject: Re: [Caml-list] Pattern matching
Date: 09 Nov 2001 01:26:46 +0100 [thread overview]
Message-ID: <lyeln8hjqx.fsf@leia.mandrakesoft.com> (raw)
In-Reply-To: <009f01c167fe$ebf5e780$2770f2c3@Utilisateur>
"Diego Olivier Fernandez Pons" <FernandezPons@iFrance.com> writes:
[...]
> let couples = function n ->
> let rec couplesCPS = function
> | (n,_) -> [ ]
vs
> let couples = function n ->
> let rec couplesCPS = function
> | (i,_) when (i = n) -> [ ]
the problem is an expressivity one. Something like
(function A(e) -> e | _ -> ...)
become dependent on the context: is there a variable "e" in the surrounding
context. This is not good.
One could add some sugar allowing:
> let couples = function n ->
> let rec couplesCPS = function
> | (@@n,_) -> [ ]
where @@n force the scope of n to be non-local. But too much sugar makes the
language harder to learn :)
[...]
> let egalite = function
> | (x,x) -> true
> | (x,y) -> false
> ;;
> # This variable is bound several times in this matching
i wonder why this one is not allowed since it can't have any other meaning
than the one it has in prolog. What's the reason for not having it rewritten
to:
> let egalite = function
> | (x,x') when x=x' -> true
> | (x,y) -> false
maybe you're right than the kind of equality (= vs ==) may be the problem...
-------------------
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 prev parent reply other threads:[~2001-11-09 0:29 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-11-08 2:33 Diego Olivier Fernandez Pons
2001-11-09 0:26 ` Pixel [this message]
2001-11-09 10:59 ` Luc Maranget
[not found] ` <15339.34220.198731.791811@lachesis.inria.fr>
2001-11-10 2:16 ` Diego Olivier Fernandez Pons
2001-11-12 10:29 ` Luc Maranget
2001-11-12 9:00 ` Diego Olivier Fernandez Pons
2001-11-13 8:00 ` Fabrice Le Fessant
2001-11-13 23:57 ` [Caml-list] If ou Pattern-matching ? Diego Olivier Fernandez Pons
2001-11-14 10:02 ` Fabrice Le Fessant
2001-11-14 10:47 ` Nicolas Barnier
2001-11-14 1:26 ` [Caml-list] Warnings possibles Diego Olivier Fernandez Pons
2001-11-14 18:24 ` Luc Maranget
2001-11-14 11:35 ` [Caml-list] If ou Pattern-matching ? Luc Maranget
2001-11-13 16:09 ` [Caml-list] Pattern matching Luc Maranget
2001-11-13 23:56 ` [Caml-list] Deux types de pattern-matching ? Diego Olivier Fernandez Pons
2001-11-14 10:19 ` [Caml-list] " Luc Maranget
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=lyeln8hjqx.fsf@leia.mandrakesoft.com \
--to=pixel@mandrakesoft.com \
--cc=FernandezPons@iFrance.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