これは恐ろしく不自然な例ですが、とにかく...これは型チェックを行います:
newtype Foo c = Foo { runFoo :: c -> Bool }
newtype Bar c = Bar { runBar :: Int -> c }
foo :: Eq c => Bar c -> (c -> [c]) -> Bar (Foo c)
foo bar f = Bar res
where res n = Foo judge
where judge c = (c`elem`) . f $ runBar bar n
そして働く
GHCi> let foo0 = foo (Bar id) (\n -> [n, n*2])
GHCi> map (runFoo $ runBar foo0 4) [1..10]
[False,False,False,True,False,偽、偽、真、偽、偽]
しかし、明らかな型シグネチャをローカル関数に追加するとjudge
、
foo :: Eq c => Bar c -> (c -> [c]) -> Bar (Foo c)
foo bar f = Bar res
where res n = Foo judge
where judge :: c -> Bool
judge c = (c`elem`) . f $ runBar bar n
それは失敗します
Could not deduce (c ~ c2)
from the context (Eq c)
bound by the type signature for
foo :: Eq c => Bar c -> (c -> [c]) -> Bar (Foo c)
等々。Haskell 98 ではほとんど驚くことではありませんが、そのような署名を記述できるようにする必要があると思いますScopedTypeVariables
が、明らかにそうではありません。これには特定の理由がありますか?ネストされた s で機能しないのは意図的なwhere
ものですか?これが同等の実際の問題で発生した場合、どのような回避策がありますか?