* [Caml-list] polymorphic modules in classes
@ 2003-04-15 11:12 Axel Simon
2003-04-17 2:29 ` Jacques Garrigue
0 siblings, 1 reply; 2+ messages in thread
From: Axel Simon @ 2003-04-15 11:12 UTC (permalink / raw)
To: caml-list
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
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Caml-list] polymorphic modules in classes
2003-04-15 11:12 [Caml-list] polymorphic modules in classes Axel Simon
@ 2003-04-17 2:29 ` Jacques Garrigue
0 siblings, 0 replies; 2+ messages in thread
From: Jacques Garrigue @ 2003-04-17 2:29 UTC (permalink / raw)
To: A.Simon; +Cc: caml-list
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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-04-17 2:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-15 11:12 [Caml-list] polymorphic modules in classes Axel Simon
2003-04-17 2:29 ` Jacques Garrigue
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox