From: Antoine Delignat-Lavaud <antoine.delignat-lavaud@dptinfo.ens-cachan.fr>
To: caml-list@yquem.inria.fr
Subject: Why does value restriction not apply to the empty list ?
Date: Sat, 10 Jan 2009 12:34:22 +0100 [thread overview]
Message-ID: <496887BE.8030804@dptinfo.ens-cachan.fr> (raw)
[-- Attachment #1: Type: text/plain, Size: 1439 bytes --]
Dear caml experts,
While completing a project for my undergrad programming course, I have
tumbled on a behavior in ocaml (my version is 3.10) that I don't quite
understand.
We are required to write a polymorphic Hindley-Milner type inferer in
Ocaml for a dialect of ML with references and lists.
I chose to solve the problem of polymorphic references by adding value
restriction* to my inferer, using ocaml to check my results.
Not knowing whether the empty list should be considered a value or an
expression, I copied Ocaml's behavior and made it a value.
As a result, my inferer gave the following expression the integer type :
let el = [] in if hd el then 1 else hd el ;;
which is the expected result since el has polymorphic type 'a list
but does not look right because it is used as both a bool list and an
int list.
In Ocaml, the program
let el = [] in if List.length el > 0 then (List.hd el)+(int_of_string
(List.hd el)) else 0 ;;
yields not type error and returns 0 despite the use of el as both an int
list and a string list.
Thus, I am wondering why does value restriction not apply to the empty
list in Ocaml. I don't think it's possible to do a cast with the empty
list (it is empty after all) but I don't see any benefit in doing so.
Thanks for any tip.
With regards,
Antoine Delignat-Lavaud
* see "A syntatic approach to type soundness", A. Wright, 1992
or "Relaxing the value restriction", J. Garrigue
[-- Attachment #2: antoine_delignat-lavaud.vcf --]
[-- Type: text/x-vcard, Size: 274 bytes --]
begin:vcard
fn:Antoine Delignat-Lavaud
n:Delignat-Lavaud;Antoine
org;quoted-printable:ENS Cachan;=C3=89l=C3=A8ve au d=C3=A9partement d'informatique
adr;dom:;;M310;Cachan
email;internet:antoine.delignat-lavaud@dptinfo.ens-cachan.fr
tel;cell:0608401862
version:2.1
end:vcard
next reply other threads:[~2009-01-10 11:34 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-10 11:34 Antoine Delignat-Lavaud [this message]
2009-01-10 12:59 ` [Caml-list] " Richard Jones
2009-01-10 13:10 ` Arnaud Spiwack
[not found] ` <527cf6bc0901100556n40b54b0amff84a7707aacb0ae@mail.gmail.com>
2009-01-10 17:48 ` Antoine Delignat-Lavaud
2009-01-11 16:31 ` Xavier Leroy
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=496887BE.8030804@dptinfo.ens-cachan.fr \
--to=antoine.delignat-lavaud@dptinfo.ens-cachan.fr \
--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