From: Andreas Rossberg <rossberg@mpi-sws.org>
To: Julien Signoles <Julien.Signoles@cea.fr>
Cc: Pietro Abate <Pietro.Abate@pps.jussieu.fr>,
caml list <caml-list@inria.fr>
Subject: Re: [Caml-list] small typing problem with modules ...
Date: Tue, 26 May 2009 15:35:03 +0200 [thread overview]
Message-ID: <DB11D4E6-4023-40CC-A85B-B1641F09BF18@mpi-sws.org> (raw)
In-Reply-To: <4A1BE27E.8030908@cea.fr>
[-- Attachment #1: Type: text/plain, Size: 1390 bytes --]
On May 26, 2009, at 14.37 h, Julien Signoles wrote:
>
>> My problem here is that I'd like to have a module type T for the
>> functor
>> Make in b.ml and to avoid the signature duplication in b.mli ...
>> ideally
>> I'd like to write in b.mli something like :
>> module type T = sig ???? end
>> module Make : functor (Extra : A.Extra) -> functor (A : A.T with
>> type extra = Extra.t) -> T with ...
>> include T with ...
>> It's clear that I cannot write a module type as follows because the
>> the "open A" will consider the default type of A and not it's
>> parametrized version ...
>> module type T = sig
>> open A
>> val f : extra -> unit
>> end
>> how can I parametrize this signature ? I can write something like :
>> module type T = functor (A : A.T) -> sig
>> open A
>> val f : extra -> unit end ;;
>> but then I'm a bit lost putting all this together ... I know I'm
>> close ... a small hint ?
>
> Hum, module types cannot be parameterized.
Actually, they can. You just have to put them into a functor. For
example:
# module TF (A : sig type t end) =
struct
module type T = sig open A val x : t end
end;;
module TF :
functor (A : sig type t end) -> sig module type T = sig val x : A.t
end end
# module I = struct type t = int end;;
module I : sig type t = int end
# module M : TF(I).T = struct let x = 9 end;;
module M : TF(I).T
- Andreas
[-- Attachment #2: Type: text/html, Size: 2542 bytes --]
prev parent reply other threads:[~2009-05-26 13:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-26 9:37 Pietro Abate
2009-05-26 12:37 ` [Caml-list] " Julien Signoles
2009-05-26 13:12 ` Pietro Abate
2009-05-26 13:35 ` Andreas Rossberg [this message]
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=DB11D4E6-4023-40CC-A85B-B1641F09BF18@mpi-sws.org \
--to=rossberg@mpi-sws.org \
--cc=Julien.Signoles@cea.fr \
--cc=Pietro.Abate@pps.jussieu.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