From: "Till Varoquaux" <till.varoquaux@gmail.com>
To: OCaml <caml-list@inria.fr>
Subject: How do I get polymorphic partial application?
Date: Sat, 23 Jun 2007 20:55:02 +0200 [thread overview]
Message-ID: <9d3ec8300706231155p2429504ay6395ea0580756dc7@mail.gmail.com> (raw)
Humm... I have a small issue here: I need to get the result of the
partial application of a polymorphic function. Since variable are
generalized in Let it is generally advised to use eta expansions,
(i.e transform to a total application).
sometimes eta expansions just won't do the trick, consider:
let cntTag start=
let cnt=ref start in
fun v -> ((incr cnt;!cnt),v)
the partial application is not fully polymorphic
let tag1 = cntTag 1
has type
val tag1 : '_a -> int * '_a = <fun>
the eta expanded equivalent doesn't have the same semantic (it
actually seems even less useful):
let tag1 x= cntTag 1 x
Is there an elegant solution to that problem?
Cheers,
Till
--
http://till-varoquaux.blogspot.com/
next reply other threads:[~2007-06-23 18:55 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-06-23 18:55 Till Varoquaux [this message]
2007-06-23 21:41 ` [Caml-list] " Philippe Wang
2007-06-23 21:49 ` Lukasz Stafiniak
2007-06-23 22:09 ` Till Varoquaux
2007-06-23 22:25 ` Lukasz Stafiniak
2007-06-23 22:11 ` Philippe Wang
2007-06-23 22:28 ` Lukasz Stafiniak
2007-06-23 22:07 ` Zheng Li
2007-06-23 22:09 ` Zheng Li
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=9d3ec8300706231155p2429504ay6395ea0580756dc7@mail.gmail.com \
--to=till.varoquaux@gmail.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