gpt4 book ai didi

haskell - 在 Haskell 的案例中进行范围检查?

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

在 Haskell 中是否有有效的方法来执行以下操作:

case n of
0 -> doThis
1 -> doThat
2 -> doAnother
3..99 -> doDefault

除了有 97 行“doDefault”之外?

最佳答案

case n of
0 -> doThis
1 -> doThat
2 -> doAnother
_ -> doDefault

如果你真的需要一个范围,
case n of
0 -> doThis
1 -> doThat
2 -> doAnother
x | 3 <= x && x < 100 -> doDefault
_ -> reallyDoDefault

关于haskell - 在 Haskell 的案例中进行范围检查?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2423596/

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