例如,如何编写可以与Typed Racket中的多态函数一起使用的map
版本?我使用一个简单的id
函数定义为:
(: id : (All (A) A -> A))
(define (id x) x)
当我尝试将其映射到列表时,出现错误:
> (map id '(1 2 3))
Type Checker: Polymorphic function `map' could not be applied to arguments:
Types: (-> a b ... b c) (Listof a) (Listof b) ... b -> (Listof c)
(-> a c) (Pairof a (Listof a)) -> (Pairof c (Listof c))
Arguments: (All (A) (-> A A)) (List One Positive-Byte Positive-Byte)
Expected result: AnyValues
in: (map id (quote (1 2 3)))
最佳答案
在这种情况下,您必须手动实例化多态:
-> (map (inst identity Integer) '(1 2 3))
- : (Listof Integer) [more precisely: (Pairof Integer (Listof Integer))]
'(1 2 3)
原因在《类型 Racket 指南》 here中进行了说明:
(有关更多说明和示例,请参见文档)
关于types - 如何在Typed Racket中编写以多态函数作为参数的高阶函数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26212222/