Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: Axel Simon <A.Simon@ukc.ac.uk>
To: caml-list@inria.fr
Subject: [Caml-list] polymorphic modules in classes
Date: Tue, 15 Apr 2003 12:12:41 +0100	[thread overview]
Message-ID: <20030415111241.GB20789@myrtle.ukc.ac.uk> (raw)

Hi,

I would like to use a Hashtbl which is polymorphic in its elements. The 
elements should by compared by physical equality so I cannot use the 
"generic interface". My goal is to create a hash table over the type 'a 
which maps to int. I wrote:

module H = Hashtbl;;

module PhysEq : H.HashedType = struct
  type t 
  let equal = (==)
  let hash  = H.hash
end;;

module PhysHashtbl : H.S = 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

When I compile, I get "Unbound type constructor a'" for the line which 
introduces stored, although it works with int. 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?

I am really new to OCaml and I couldn't make sense of the tutorials and 
other messages posted on this list.

Any help appreciated,
Axel.

-------------------
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-16 16:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-04-15 11:12 Axel Simon [this message]
2003-04-17  2:29 ` Jacques Garrigue

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=20030415111241.GB20789@myrtle.ukc.ac.uk \
    --to=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