From: "Don Syme" <dsyme@microsoft.com>
To: <caml-list@inria.fr>
Subject: [Caml-list] Record pattern matching
Date: Mon, 7 May 2001 08:33:23 -0700 [thread overview]
Message-ID: <0C682B70CE37BC4EADED9D375809768A48FDDC@red-msg-04.redmond.corp.microsoft.com> (raw)
In OCaml record patterns may be inexact, i.e. you do not have to specify
all the fields.
# type x = {a:int; b:int};;
type x = { a : int; b : int; }
# function {a=a} -> a;;
- : x -> int = <fun>
# function {b=b} -> b;;
- : x -> int = <fun>
#
I guess this is considered a feature, but I just wanted to report that
in my current situation I actually find it unhelpful. I'm in the
process of adding fields to a large number of existing records in a
large existing code base, and would like the type checker to notify me
every time a pattern match is used against one of these record types -
essentially every place where I do such a pattern match I will have some
extra work to do and I'd rather the type checker guided me to these
locations.
If I had encoded the type as a datatype constructor, then the rules are
of course different:
# type x = Foo of int * int;;
type x = Foo of int * int
# function (Foo (x)) -> x
Characters 10-17:
The constructor Foo expects 2 argument(s),
but is here applied to 1 argument(s)
It seems you're faced with an unfortunate either-or: you lose some
strictness in your type checking (i.e. the type checker ends up catching
less bugs), or you lose the syntactic convenience of records.
I don't really have a suggestion as to what to do about this, though I
guess I would prefer if pattern matching against records was strict, or
if an alternative syntax could be used for stricter record patterns. As
an aside, I would also prefer it if you did not have to use the "{a=a;
b=b}" syntax but could write "{a; b}".
Thanks,
Don
-------------------
To unsubscribe, mail caml-list-request@inria.fr. Archives: http://caml.inria.fr
next reply other threads:[~2001-05-07 15:34 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-05-07 15:33 Don Syme [this message]
2001-05-07 18:37 ` John Max Skaller
2001-05-10 18:43 Don Syme
2001-05-11 8:00 ` Andreas Rossberg
2001-05-11 9:04 ` John Max Skaller
2001-05-12 17:11 ` Brian Rogoff
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=0C682B70CE37BC4EADED9D375809768A48FDDC@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