将带有条件的 F# 模式匹配转换为 Scala
如何将具有 when 条件的 F# 模式匹配转换为 Scala?
我在 F# 中有以下代码:
match t0, t1 with
| "a", _ -> true
| b, "a" when not (b = "c") -> false
关于此主题还有另一篇文章 Scala:当两个项目之一满足某些条件时进行模式匹配,但我无法获得基线。
How is it possible to convert a F# pattern-matching with when-condition to Scala?
I have the following code in F#:
match t0, t1 with
| "a", _ -> true
| b, "a" when not (b = "c") -> false
There is another post on this topic Scala: Pattern matching when one of two items meets some condition, but I can't get the baseline.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对F#不是很熟悉,但看起来应该是几乎1:1的转换。这是 Scala 版本:
I'm not very familiar with F#, but looks like it should be almost 1:1 conversion. Here is Scala version: