我几乎能够为类型Pair创建一个有效的仿函数实例。问题是,Pair接受两个相同类型的参数,所以当我写
时fmap f (Pair a a') = Pair a (f a')
我不能保证结果是有效的一对,因为(f a')可能是任何类型。
确保此约束的Haskell方法是什么?
import Test.QuickCheck
import Test.QuickCheck.Function
data Pair a = Pair a a deriving (Eq, Show)
instance Functor Pair where
fmap f (Pair a a') = Pair a (f a')
-- stuff below just related to quickchecking that functor instance is valid
main = quickCheck (functorCompose' :: PFC)
type P2P = Fun Int Int
type PFC = (Pair Int) -> P2P -> P2P -> Bool
instance (Arbitrary a) => Arbitrary (Pair a) where
arbitrary = do
a <- arbitrary
b <- arbitrary
return (Pair a b)
functorIdentity :: (Functor f, Eq (f a)) => f a -> Bool
functorIdentity f = fmap id f == f
functorCompose :: (Eq (f c), Functor f) => (a -> b) -> (b -> c) -> f a -> Bool
functorCompose f g x = (fmap g (fmap f x)) == (fmap (g . f) x)
functorCompose' :: (Eq (f c), Functor f) => f a -> Fun a b -> Fun b c -> Bool
functorCompose' x (Fun _ f) (Fun _ g) = (fmap (g . f) x) == (fmap g . fmap f $ x)
以下是我收到的错误消息,顺便说一下:
chap16/functor_pair.hs:22:29: Couldn't match expected type ‘b’ with actual type ‘a’ …
‘a’ is a rigid type variable bound by
the type signature for fmap :: (a -> b) -> Pair a -> Pair b
at /Users/ebs/code/haskell/book/chap16/functor_pair.hs:22:3
‘b’ is a rigid type variable bound by
the type signature for fmap :: (a -> b) -> Pair a -> Pair b
at /Users/ebs/code/haskell/book/chap16/functor_pair.hs:22:3
Relevant bindings include
a' :: a
(bound at /Users/ebs/code/haskell/book/chap16/functor_pair.hs:22:18)
a :: a
(bound at /Users/ebs/code/haskell/book/chap16/functor_pair.hs:22:16)
f :: a -> b
(bound at /Users/ebs/code/haskell/book/chap16/functor_pair.hs:22:8)
fmap :: (a -> b) -> Pair a -> Pair b
(bound at /Users/ebs/code/haskell/book/chap16/functor_pair.hs:22:3)
In the first argument of ‘Pair’, namely ‘a’
In the expression: Pair a (f a')
Compilation failed.
(这是来自http://haskellbook.com/)的练习
答案 0 :(得分:3)
假设f :: t1 -> t2
。我们想要fmap f :: Pair t1 -> Pair t2
。你的尝试是:
fmap f (Pair a a') = Pair a (f a')
-- ^
是错误类型的,因为a
的类型为t1
,而不是类型t2
。
如果我们只有一些可以将t1
值转换为t2
值的内容,我们可以在a
上使用它,并且所有内容都会输入check。我们有这样的事吗? ; - )