>="-6ren"> >="-我有很多风格的代码: do x ... that -> ... other -> ... 我有什么方法可以结合“x >= 管道 x . import System.Environ-6ren">
gpt4 book ai didi

haskell - 在 haskell 中,结合 "case"和 ">>="

转载 作者:行者123 更新时间:2023-12-03 14:59:22 25 4
gpt4 key购买 nike

我有很多风格的代码:

do
x <- getSomething
case x of
this -> ...
that -> ...
other -> ...

我有什么方法可以结合“x <- ...”和“case x of”行来消除对变量的需求?

最佳答案

您可以使用绑定(bind)运算符 >>= 管道 x .

import System.Environment (getArgs)

main :: IO ()
main = getArgs >>= process
where process ["xxx"] = putStrLn "You entered xxx"
process ["yyy"] = putStrLn "You entered yyy"
process _ = putStrLn "Error"

关于haskell - 在 haskell 中,结合 "case"和 ">>=",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3403166/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com