为什么一个Maybe monad被强制执行?

时间:2016-07-12 00:18:40

标签: haskell maybe

我正在尝试使用Network.Linklater包实现基本的slackbot:

https://github.com/hlian/linklater

此包定义以下功能:

slashSimple :: (Command -> IO Text) -> Application
slashSimple f =
  slash (\command _ respond -> f command >>= (respond . responseOf status200))

我试图像这样消费:

kittensBot :: Command -> IO Text
kittensBot cmd = do
           putStrLn("+ Incoming command: " ++ show cmd)
           return "ok"

main :: IO ()
main = do
     putStrLn ("Listening on port: " ++ show port)
     run port (slashSimple kittensBot)
     where
       port = 3001

这会产生(在编译时):

Main.hs:20:28:
    Couldn't match type ‘Maybe Command’ with ‘Command’
    Expected type: Maybe Command -> IO Text
      Actual type: Command -> IO Text
    In the first argument of ‘slashSimple’, namely ‘kittensBot’
    In the second argument of ‘run’, namely ‘(slashSimple kittensBot)’

slashSimple的签名为(Command -> IO Text) -> ApplicationkittensBot的签名不应该满足吗?为什么不呢?

1 个答案:

答案 0 :(得分:7)

虽然GitHub master上slashSimple的定义与您报告的一样,但linklater-3.2.0.0中的Hackage版本是

slashSimple :: (Maybe Command -> IO Text) -> Application

如果您想在Hackage上使用该软件包,您需要将kittensBot更新为:

kittensBot :: Maybe Command -> IO Text
kittensBot Nothing = ...
kittensBot (Just cmd) = do
       putStrLn("+ Incoming command: " ++ show cmd)
       return "ok"

或者,您可以从GitHub下载软件包并手动安装。

相关问题