より高い機能を使用して、タプルのリストをコンポーネントごとに追加しようとしています。結果は (最初のコンポーネントの合計、2 番目のコンポーネントの合計) になります。
sumPointwise :: Num a => [(a,a)] -> (a,a)
sumPointwise tl = (sumPw1, sumPw2) -- 42:1
where sumPw1 = foldr (\ x y -> (fst x) + (fst y)) 0 tl
sumPw2 = foldr (\ x y -> (snd x) + (snd y)) 0 tl
しかし、次のエラーが発生します。
Couldn't match type `a' with `(a, b0)'
`a' is a rigid type variable bound by
the type signature for sumPointwise :: Num a => [(a, a)] -> (a, a)
at .hs:42:1
In the first argument of `fst', namely `y'
In the second argument of `(+)', namely `(fst y)'
In the expression: (fst x) + (fst y)
ラムダ関数が間違っているようです。しかし、私はそれを取得しません。
ご協力いただきありがとうございます!