質問

This is probably a silly question, but I want to define a type like this:

type bla = Bla of (string, bla) Hashtbl

However, it gives me a parse error, no matter what I do. In essence, I want Bla to hold hashtable from string to bla again. What am I exactly doing wrong?

役に立ちましたか?

解決

Hashtbl is a module. The (non-functorial) type that it defines is ('a, 'b) Hashtbl.t:

# type bla = Bla of (string, bla) Hashtbl.t;;
type bla = Bla of (string, bla) Hashtbl.t
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top