我很乐意收到一些关于以下示例的有用评论:
http ://caml.inria.fr/pub/docs/manual-ocaml-400/manual021.html#toc79
7.12 显式多态类型注解
type 'a t = Leaf of 'a | Node of ('a * 'a) t
let rec depth : 'a. 'a t -> 'b = function
|Leaf _ -> 1
| Node x -> 1 + depth x
我理解这个示例函数,但是当我尝试定义类型的“类似地图”的函数时
'a. 'a t -> ('a -> 'b) -> 'b t
例如:
let rec tmap: 'a. 'a t ->(f:'a->'b) -> 'b t = function
|Leaf x -> Leaf( f x)
|Node x -> let res = tmap x in Node(res);;
我收到以下错误:
Characters 67-77:
|Leaf x -> Leaf( f x)
^^^^^^^^^^
Error: This expression has type 'c t but an expression was expected of type
(f:'a -> 'b) -> 'b t
我不完全理解。我将不胜感激任何有用的评论。