gpt4 book ai didi

haskell - 如何从 Either 中获取值(value)?

转载 作者:行者123 更新时间:2023-12-03 09:45:50 26 4
gpt4 key购买 nike

我在 ghci 中有这段代码,尝试解码 base64 代码:

let a=pack "MTExMTEx"
let b=decode a
:t b
b :: Either String ByteString

那么如何从任何一个中获取解码字节串?有没有像Maybe's fromJust这样的函数?我找不到它,谢谢。

最佳答案

使用case :

case decode a of
Left err -> {- what to do if decode gave an error -}
Right msg -> {- what to do if decode succeeded -}
either Alexandre 建议的函数本质上与此相同,只是将两个分支视为函数;即它相当于写:
either 
(\err -> {- what to do if decode gave an error -})
(\msg -> {- what to do if decode succeeded -})
(decode a)

关于haskell - 如何从 Either 中获取值(value)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46944347/

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