m
次のような型アノテーションを使用してファンクター風の操作を提供するクラスを定義したいと思います。
mapify ::(a-> b)-> ma-> mb
ただし、他のファンターっぽくない操作も必要でした。私は次の線に沿って何かを書きたかったでしょう:
class MyMap m where
type Key m
type Value m
keys :: m -> [Key m]
elems :: m -> [Value m]
mapify :: (a -> b) -> m a -> m b -- WON'T WORK!!!
それがうまくいかない理由を理解しています。私が思いついた解決策は、それを2つのクラスに分割することでした。つまり、「通常の」クラスとFunctorでモデル化されたクラスです。
{-# LANGUAGE TypeFamilies #-}
import qualified Data.Map.Lazy as M
class MyMap m where
type Key m
type Value m
keys :: m -> [Key m]
elems :: m -> [Value m]
class MyMapF m where
mapify :: (a -> b) -> m a -> m b
instance MyMap (M.Map k v) where
type Key (M.Map k v) = k
type Value (M.Map k v) = v
keys = M.keys
elems = M.elems
instance MyMapF (M.Map k) where
mapify = M.map
それはうまくいきますが、もっと良い方法はありますか?
編集:私はsabaumaによって提案された解決策が本当に好きです。ただし、このクラスを使用する関数を作成しようとすると、型アノテーションを取得できません。
doSomething
:: (MyMap m1, MyMap m2, Container m1 ~ Container m2) => -- line 22
(Value m1 -> Value m2) -> m1 -> m2 -- line 23
doSomething f m = mapify f m -- line 24
私が得るエラーは次のとおりです。
../Amy3.hs:22:6:
Couldn't match type `b0' with `Value (Container m0 b0)'
`b0' is untouchable
inside the constraints (MyMap m1,
MyMap m2,
Container m1 ~ Container m2)
bound at the type signature for
doSomething :: (MyMap m1, MyMap m2, Container m1 ~ Container m2) =>
(Value m1 -> Value m2) -> m1 -> m2
Expected type: a0 -> b0
Actual type: Value m1 -> Value m2
../Amy3.hs:24:19:
Could not deduce (m2 ~ Container m0 b0)
from the context (MyMap m1, MyMap m2, Container m1 ~ Container m2)
bound by the type signature for
doSomething :: (MyMap m1, MyMap m2, Container m1 ~ Container m2) =>
(Value m1 -> Value m2) -> m1 -> m2
at ../Amy3.hs:(22,6)-(23,38)
`m2' is a rigid type variable bound by
the type signature for
doSomething :: (MyMap m1, MyMap m2, Container m1 ~ Container m2) =>
(Value m1 -> Value m2) -> m1 -> m2
at ../Amy3.hs:22:6
In the return type of a call of `mapify'
In the expression: mapify f m
In an equation for `doSomething': doSomething f m = mapify f m
../Amy3.hs:24:28:
Could not deduce (m1 ~ Container m0 a0)
from the context (MyMap m1, MyMap m2, Container m1 ~ Container m2)
bound by the type signature for
doSomething :: (MyMap m1, MyMap m2, Container m1 ~ Container m2) =>
(Value m1 -> Value m2) -> m1 -> m2
at ../Amy3.hs:(22,6)-(23,38)
`m1' is a rigid type variable bound by
the type signature for
doSomething :: (MyMap m1, MyMap m2, Container m1 ~ Container m2) =>
(Value m1 -> Value m2) -> m1 -> m2
at ../Amy3.hs:22:6
In the second argument of `mapify', namely `m'
In the expression: mapify f m
In an equation for `doSomething': doSomething f m = mapify f m
Failed, modules loaded: none.