From: Jean-Christophe Filliatre <Jean-Christophe.Filliatre@lri.fr>
To: Julien Verlaguet <Julien.Verlaguet@pps.jussieu.fr>
Cc: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] Type inference question
Date: Tue, 26 Apr 2005 14:00:22 +0200 [thread overview]
Message-ID: <17006.11606.297786.728905@gargle.gargle.HOWL> (raw)
In-Reply-To: <Pine.LNX.4.62.0504261312400.30470@hydrogene.pps.jussieu.fr>
Julien Verlaguet writes:
> I have the following function definition :
>
> let myfun param=
> let res=Marshal.from_channel stdin [] in
> if res=param then
> res
> else res
>
> I was expecting : myfun : 'a -> 'a
>
> I got instead : myfun : 'a -> 'b
>
> Is it normal ?
Yes. "Marshal.from_channel stdin []" has type 'a and this type is
generalized in the let/in construct, giving res the type "forall
'a. 'a". In the test "res = param", the type of res is instanciated on
the type of param, but this does not affect the type of the result.
It would be better if Marshal.from_channel would be given a type that
cannot be generalized ('_a) but I don't think that the ocaml type
system can do this.
Anyway, it is always a good idea to use a type constraint when using
marshalling functions, as in
let (x : tau) = Marshal.from_channel ...
Hope this helps,
--
Jean-Christophe
next prev parent reply other threads:[~2005-04-26 12:00 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-04-26 11:15 Julien Verlaguet
2005-04-26 12:00 ` Jean-Christophe Filliatre [this message]
2005-04-26 13:19 ` [Caml-list] " Mark Shinwell
2005-04-26 13:41 ` Andreas Rossberg
2005-04-26 13:45 ` Mark Shinwell
2005-04-26 13:54 ` Jacques Garrigue
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=17006.11606.297786.728905@gargle.gargle.HOWL \
--to=jean-christophe.filliatre@lri.fr \
--cc=Julien.Verlaguet@pps.jussieu.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