将带有条件的 F# 模式匹配转换为 Scala

发布于 2024-12-10 20:16:51 字数 385 浏览 0 评论 0原文

如何将具有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隱形的亼 2024-12-17 20:16:51

我对F#不是很熟悉,但看起来应该是几乎1:1的转换。这是 Scala 版本:

(t0, t1) match {
    case ("a", _) => true
    case (b, "a") if b != "c" => false
}

I'm not very familiar with F#, but looks like it should be almost 1:1 conversion. Here is Scala version:

(t0, t1) match {
    case ("a", _) => true
    case (b, "a") if b != "c" => false
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文