caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Jacques Garrigue <garrigue@kurims.kyoto-u.ac.jp>
To: A.Simon@ukc.ac.uk
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] polymorphic modules in classes
Date: Thu, 17 Apr 2003 11:29:20 +0900	[thread overview]
Message-ID: <20030417112920P.garrigue@kurims.kyoto-u.ac.jp> (raw)
In-Reply-To: <20030415111241.GB20789@myrtle.ukc.ac.uk>

From: Axel Simon <A.Simon@ukc.ac.uk>

> When I compile, I get "Unbound type constructor a'" for the line which 
> introduces stored, although it works with int.

This just looks like a typo: this should be 'a (a type variable), not
a' (an identifier). When fixed, your program is accepted.

> I guess there are many 
> other problems with my solution: PhysEq.t is abstract and PhysHashtbl.key 
> is not bound to any type. How do I solve all this?

This one is a much more serious problem, and appears frequently on
this list.
The only solution currently is to copy the Hashtbl module, replacing
key by 'a key, and 'a t by ('b,'a) t.

A simpler workaround is to define a functor producing your class.

module Make(T : sig type t end) = struct
  module PhysEq = struct
    type t = T.t
    let equal = (==)
    let hash  = H.hash
  end

  module PhysHashtbl : H.S with type key = T.t = H.Make(PhysEq)

  class ['a] bulkWriter ((fname, wr) : string * (out_channel -> 'a -> unit))  =
    let outCh = open_out_bin fname
    and stored   : ('a PhysHashtbl.t) = (PhysHashtbl.create 100)
    in object
     (* something here *)   
    end
end

Then you can create a class for every type you need.

But I'm not sure exactly of what you intend to use your hash table
for. Does it really need to handle many types?

Jacques Garrigue

-------------------
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


      reply	other threads:[~2003-04-17  2:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-04-15 11:12 Axel Simon
2003-04-17  2:29 ` Jacques Garrigue [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=20030417112920P.garrigue@kurims.kyoto-u.ac.jp \
    --to=garrigue@kurims.kyoto-u.ac.jp \
    --cc=A.Simon@ukc.ac.uk \
    --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;
as well as URLs for NNTP newsgroup(s).