caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Till Varoquaux" <till.varoquaux@gmail.com>
To: "Lukasz Stafiniak" <lukstafi@gmail.com>
Cc: caml-list <caml-list@yquem.inria.fr>
Subject: Re: [Caml-list] How do I get polymorphic partial application?
Date: Sun, 24 Jun 2007 00:09:47 +0200	[thread overview]
Message-ID: <9d3ec8300706231509p373e494ci1b05987fb3723e69@mail.gmail.com> (raw)
In-Reply-To: <4a708d20706231449g38836405xc48f4eb6fa82d779@mail.gmail.com>

As said previously, in a HM type ineference system type variables are
generalized only in "let", that is:

let id x = x (*starting with an identity function*)
let id'= id id (*this is a partial application; it has type '_a ->'_a*)
let _=
  print_string (id' "a");
  print_int (id' 4)

won't work (since id' has type '_a->'_a).

Replacing the definition of id' with the eta expanded version (let id'
x = (id id) x)  will however work. It is not 100% equivalent since
every application of the new id' goes twice through id whilst the old
was a reference to id....

I hope this answers your question.
Cheers,
Till
On 6/23/07, Lukasz Stafiniak <lukstafi@gmail.com> wrote:
> On 6/23/07, Philippe Wang <lists@philippewang.info> wrote:
> > Till Varoquaux wrote:
> > > 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:
> >
> > I think you should not try to "hide" that ugly side effect...
> >
> Could someone give an example where this "eta-thing" forbids a crash?
> I don't remember any example even in Xavier Leroy papers.
>
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
>


-- 
http://till-varoquaux.blogspot.com/


  reply	other threads:[~2007-06-23 22:09 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-23 18:55 Till Varoquaux
2007-06-23 21:41 ` [Caml-list] " Philippe Wang
2007-06-23 21:49   ` Lukasz Stafiniak
2007-06-23 22:09     ` Till Varoquaux [this message]
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=9d3ec8300706231509p373e494ci1b05987fb3723e69@mail.gmail.com \
    --to=till.varoquaux@gmail.com \
    --cc=caml-list@yquem.inria.fr \
    --cc=lukstafi@gmail.com \
    /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;
as well as URLs for NNTP newsgroup(s).