Haskell 案例中的范围检查?
在 Haskell 中是否有一种有效的方法可以执行以下操作:
case n of
0 -> doThis
1 -> doThat
2 -> doAnother
3..99 -> doDefault
除了 97 行“doDefault”之外?
Is there a valid way to do the following in Haskell:
case n of
0 -> doThis
1 -> doThat
2 -> doAnother
3..99 -> doDefault
other than to have 97 lines of "doDefault" ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你确实需要一个范围,
If you really need a range,
使用守卫! ;)
或者
Using guards! ;)
OR
我认为你可以将默认情况设置为 _ 模式,它可以匹配任何内容。
我不确定这是否正是您正在寻找的,因为它不会检查那里范围的上限......您可能想使用守卫。
I think you can have the default case be the _ pattern, which matches on anything.
I'm not sure if that's quite what you're looking for, since it doesn't check the upper bound on the range there... you might want to use guards instead.