次のコードを使用して、リストが2番目のリストのプレフィックスであるかどうか疑問に思っています:
prefix :: [a] -> [b] -> Bool
prefix [] _ = True
prefix _ [] = False
prefix (x:xs) (y:ys) = if (x==y) then prefix xs ys else False
しかし、それはエラーを返します:
Inferred type is not general enough
*** Expression : prefix
*** Expected type : [a] -> [b] -> Bool
*** Inferred type : [a] -> [a] -> Bool
誰かがこれを機能させるのを手伝ってくれますか?