有没有办法对列表中间的值进行模式匹配?或者最后?

发布于 2024-11-19 08:38:10 字数 162 浏览 0 评论 0原文

类似 Haskell 之类的东西

getFirstError :: [Either a b] -> a
getFirstError (x:y:...:Left w:z) = w

,但了解其他具有模式匹配的语言如何实现这一点可能会很有趣。

something like

getFirstError :: [Either a b] -> a
getFirstError (x:y:...:Left w:z) = w

wrt Haskell but it might be interesting to know how other languages with pattern matching accomplish this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

失而复得 2024-11-26 08:38:10

尽管有其他答案,您可以使用 GHC 中的视图模式扩展来执行此操作:

   getFirstError ((msum . map test) -> Just x) = x
        where test (Left x) = Just x
              test (Right x) = Nothing

或者使用模式防护:

   getFirstError (xs) | Just x <- (msum $ map test xs) = x
        where test (Left x) = Just x
              test (Right) x = Nothing

You can, despite the other answers, do this using view patterns extension in GHC:

   getFirstError ((msum . map test) -> Just x) = x
        where test (Left x) = Just x
              test (Right x) = Nothing

Alternatively using pattern guards:

   getFirstError (xs) | Just x <- (msum $ map test xs) = x
        where test (Left x) = Just x
              test (Right) x = Nothing
决绝 2024-11-26 08:38:10

不,但您可以使用列表理解。

getFirstError xs = head [ x | Left x <- xs ]

请注意,如果没有错误,head 将失败。

No, but you can use a list comprehension

getFirstError xs = head [ x | Left x <- xs ]

Note that head will fail if there are no errors.

源来凯始玺欢你 2024-11-26 08:38:10

不,没有。但是,您可以使用递归轻松编写该函数:

getFirstError [] = error "getFirstError: empty list or no error"
getFirstError (Left x : xs) = x
getFirstError (_ : xs) = getFirstError xs

No, there's not. However, you can easiliy write the function using recursion:

getFirstError [] = error "getFirstError: empty list or no error"
getFirstError (Left x : xs) = x
getFirstError (_ : xs) = getFirstError xs
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文