例如,我如何编写一个可以map
与 Typed Racket 中的多态函数一起使用的版本?我使用一个简单的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)))