From: "Daniel Bünzli" <daniel.buenzli@epfl.ch>
To: Jean-Christophe Filliatre <Jean-Christophe.Filliatre@lri.fr>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Encoding existential types without modules
Date: Fri, 9 Jan 2004 22:24:07 +0100 [thread overview]
Message-ID: <286C1B71-42EA-11D8-A280-000393DBC266@epfl.ch> (raw)
In-Reply-To: <EA83B6DA-4104-11D8-8A96-000393DBC266@epfl.ch>
Thanks for your feedback.
Besides, I would just like to point out that the way I solved the
problem of polymorphic recursion for the apply function in the example
of the list of composable function cannot be applied in general.
A general way to solve the problem of polymorphic recursion was given
by Brian Rogoff in a previous post [1]. Applying this solution gives
the following (much simpler and maybe more efficient) code.
Daniel
[1] http://caml.inria.fr/archives/200208/msg00334.html
module Funlist : sig
(* The funlist datatype *)
type ('a, 'b) t
(* Constructors *)
val nil : ('a, 'a) t
val cons : ('a -> 'b) -> ('b, 'c) t -> ('a, 'c) t
(* Applying a value to a composition *)
val apply : ('a, 'b) t -> 'a -> 'b
end = struct
(* List of composable functions.
The intended type expressed by the four types below is :
type ('a, 'b) t = Nil of ('a -> 'b)
| Cons of exists 'c. ('a -> 'c) * ('c, 'b) t
*)
type ('a, 'b) t = Nil of ('a -> 'b) | Cons of ('a, 'b) packed_list
and ('a, 'b, 'z) list_scope = { bind_list : 'c. ('a -> 'c) * ('c, 'b) t
-> 'z}
and ('a, 'b) packed_list = { open_list : 'z. ('a, 'b, 'z) list_scope ->
'z }
(* Packing and unpacking lists *)
let pack_list h t = { open_list = fun scope -> scope.bind_list (h,t) }
let with_packed_list p e = p.open_list e
(* Constructors *)
let nil = Nil(fun x -> x)
let cons h t = Cons(pack_list h t)
(* Type to handle the polymorphic recursion of the apply function *)
type poly_rec = { apply : 'a 'b. poly_rec -> ('a, 'b) t -> 'a -> 'b }
let apply' r l x = match l with
| Nil id -> id x
| Cons l ->
with_packed_list l { bind_list = function h,t -> r.apply r t (h x) }
let poly_rec = { apply = apply' }
let apply l x = apply' poly_rec l x
end
(* Example of use *)
let twice x = 2*x
let double x = (x, x)
let list = Funlist.cons twice (Funlist.cons (( = ) 4) (Funlist.cons
double Funlist.nil))
let a, b = Funlist.apply list 2
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
next prev parent reply other threads:[~2004-01-09 21:23 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-01-07 11:30 Daniel Bünzli
2004-01-09 12:36 ` Jean-Christophe Filliatre
2004-01-09 21:24 ` Daniel Bünzli [this message]
2004-01-09 22:24 ` brogoff
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=286C1B71-42EA-11D8-A280-000393DBC266@epfl.ch \
--to=daniel.buenzli@epfl.ch \
--cc=Jean-Christophe.Filliatre@lri.fr \
--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