- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用 Haskell 编写一个类似的解释器,到目前为止它非常有趣。我处于 Codegen 步骤(获取解析器结果,将其漂亮地打印到代码中),我尝试做的一件事如下:
我有模块,并且我的模块有声明。
codegen :: Module -> Either String ByteString
codegen Module { what = "module", declarations = decls } = Right $ foldM (\output decl ->
output ++ (codegenDecl decl)) (empty :: ByteString) decls -- generate declarations
codegen Module { what = s } = Left $ "Bad module 'what' key " ++ s
codegenDecl :: Declaration -> Either String ByteString
codegenDecl Declaration { what = dt, name = dn, argnames = Just al, constructors = Just lc } = Right $ "Declaration " ++ dn ++ " of type " ++ dt
模式匹配变量 decls
是 decls::[Declaration]
,我使用 Either monad 进行错误跟踪。我的期望
foldM (\输出 decl ->
输出++ (codegenDecl decl)) (empty::ByteString) decls
如果所有声明都正确,则连接所有ByteString,否则返回Left $“Errorwriting a statements”
但我认为,正如打字员提示的那样,我在这里遗漏了一些东西。如果任何一个声明失败,我希望整个模块失败。如果它们全部成功,我想将它们连接成一个 ByteString。
[decls] --------> Right result -------> Right $ foldM (++) accumulator result |
| ^ |
| -----------------------------------
|
|-----------> Left err ------------> Left $ err
底部似乎是 >>= 运算符对 Either 所做的事情,所以这让我认为有一种时尚的、单一的方式可以在没有 case 等的情况下做我想做的事情。我很想知道这里最好的风格是什么。
最佳答案
这并不是问题的真正答案,因为它没有解决您关于 foldM
的问题...但我什至不会使用 foldM
全部。我认为先完成所有的 codegenDecl,然后分别连接结果会更干净。这将有两个优点:
ByteString
串联操作,该操作可以首先构建一个适当大小的缓冲区,然后遍历一次以填充它。这比重复追加更有效,后者必须多次重新遍历早期的 ByteString 并分配许多缓冲区。mapM
而不是 foldM
- 读者可以减少注意力,但仍然可以得出正确的结论发生了什么事。看起来是这样的:
mconcat <$> mapM codegenDecl decls
关于Haskell FoldM 从列表到单个 Either,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48922049/
有没有办法以更“单子(monad)”的方式编写这个函数,而不是在 Either 上使用模式匹配? {-# LANGUAGE LambdaCase #-} calculate :: (Monad m)
我正在使用 cats ,想知道怎么用它转一个数据。 从 val data = Either[Error, Option[Either[Error, Account]]] 到 val target: E
我是 Haskell 的初学者,我正在编写一些使用 Either 的 Haskell 代码用于错误处理。 Either 的左侧元素表示错误,而右侧元素表示成功的结果。代码经常使用 Either 的 A
我有一个 Either 列表,表示错误: type ErrorType = List[String] type FailFast[A] = Either[ErrorType, A] import ca
假设我在 processOne 中有一个 monadic 函数,定义如下: def processOne(输入:输入):Either[ErrorType, Output] = ... 给定“Input
db.findUser(id).then(R.pipe( R.ifElse(firstTestHere, Either.Right, () => Either.Left(err)), R.ma
函数的名称是否定义如下: f :: [Either a b] -> Either [a] [b] f x = let (y1, y2) = partitionEithers x in case y
我尝试通过自己的练习找到解决方案,并满足以下要求: 我们需要根据给定的序列移动对象。 序列由 Action 组成。 以下是可能的操作:F、L、R F:前进 L : 向左旋转 90° R : 向右旋转
给定一个序列 Seq[Either[String,A]],其中 Left 是错误消息。我想获得一个 Either[String,Seq[A]] ,其中我得到一个 Right (这将是一个 Seq[A]
假设我有两个功能: b2c :: B -> Either String C a2bs :: A -> [[B]] 如何使用 b2c 和 a2bs 创建以下 a2cs 函数,以便 [[ 中是否有任何 L
查看 Haskell 的 Either Monad,有一个 >>= 函数。 Prelude Map> let add100 = \x -> Right (x+100 :: Int) Prelude M
我正在使用 cats ,想知道如何用它来转数据: val data = NonEmptyList[Either[Error, User]] 到 val target: Either[Error, No
我正在尝试将 Codable 与协议(protocol)一起使用来处理 API 请求和响应。我正在查询的 API 以“结果”键下的一组项目作为响应: { results: ["id": "1", "i
我有一个 Future[Either[A, B]]以及提供 Future[C] 的函数来自 B . 我需要转换 Future[Either[A, B]]至 Future[Either[A, C]] .
首先,我运行了以下代码,运行良好: class Monster: def __init__(self): self._can_do = [] print("cr
var newRight; if(either.isRight()) { newRight = either.getOrElse(() => throw UnimplementedError())
说我有一些代码: def foo(s:String):Either[Bar, Baz] = // some code here ... 我想将其用作: val a = Array("a", "b",
我的表单有四个字段。我需要: - 如果至少填充一个字段,则验证成功 - 对所有字段使用相同的错误“请输入电话或电子邮件” 下面的代码不能在偶然的基础上工作 - 所有字段都是单独验证的,即使我使用该函数
forall m。 MonadFail m => m 可以替换为 Either String,方法是替换 pure = Right 和 fail = Left。但是,由于 Either String
我试过这个: type TestT = Either Int Float testM :: (a -> a) -> TestT -> TestT testM f (Left x) = Left (f
我是一名优秀的程序员,十分优秀!