Hugo Ferreira wrote:
I am attempting to define a type so:

type node =
  | Node of links
  | Leaf of int

And I want to implement links as a
hashtable whose keys and values are
also of type node.

type node =
 | Node of links
 | Leaf of int
and links = (node, node) Hashtbl.t

should do it.

Jacques

_______________________________________________
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs

Reply via email to