将函数映射到字符串上

时间:2015-07-30 18:48:31

标签: haskell types map-function

我的理解是Haskell中的StringChar个列表。所以我应该能够在一个字符串上映射一个函数Char -> Whatever,对吧?

testChar :: Char -> String
testChar c = c:c:[]

myFunc :: String -> String
myFunc str = map testChar str

main = do
    putStrLn $ myFunc "hi"

当我跑步时,我得到:

 Couldn't match type ‘[Char]’ with ‘Char’
    Expected type: Char -> Char
      Actual type: Char -> String
    In the first argument of ‘map’, namely ‘testChar’
    In the expression: map testChar str

我在这里做错了什么?

2 个答案:

答案 0 :(得分:9)

ghci是你的朋友:

Prelude> let testChar c = c:c:[]
Prelude> let myFunc str = map testChar str
Prelude> :t myFunc
myFunc :: [a] -> [[a]]
Prelude> myFunc "abc"
["aa","bb","cc"]

对比:

Prelude> let myFunc' str = concatMap testChar str
Prelude> :t myFunc'
myFunc' :: [b] -> [b]
Prelude> myFunc' "abc"
"aabbcc"

编写此函数的各种等效方法:

myFunc' str = concatMap testChar str
myFunc' = concatMap testChar
myFunc' str = str >>= testChar
myFunc' = (>>= testChar)

答案 1 :(得分:4)

testChar :: Char -> String
testChar c = c:c:[]

myFunc :: String -> String
myFunc str = map testChar str

这两个没有意义。 testCharChar映射到其他类型,您希望map映射该功能并从另一端获取相同的类型? myFunc实际上会返回[[Char]],而不是[Char] / String

也许你的意思是concatMap