Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想连接两个Enumerators。问题是,>>>如果andThen第一个有EOF.
Enumerator
>>>
andThen
EOF
我想我应该放弃EOF,但我不知道如何干净地做到这一点。
我想有一种常见的惯用方式可以做到这一点。它是什么?
我不会从 Iteratee A 删除 EOF 以与 Iteratee B 连接,而是将 A 拆分为 AwithoutEOF 和 A(它只是将 AwithoutEOF 与 EOF 连接)。然后 B 可以与正确的 AwithoutEOF 连接。