문제

Getting started with conduit, and I noticed that in Data.Conduit.Util:

Utility functions from older versions of conduit. These should be considered deprecated, as there are now easier ways to handle their use cases. This module is provided solely for backwards compatibility.

Of particular concern to me is zip :: Monad m => Source m a -> Source m b -> Source m (a, b). This seems pretty useful to me - I could independently work on a way of producing as and a way of producing bs, then just zip them together when I need them, rather than have to mix concerns earlier in the process.

But, like I said, I'm new in the ways of conduit, so I'm ignorant. What are these "easier ways to handle their use cases"?

도움이 되었습니까?

해결책

That's actually a mistake in the docs. The functions now provided by the util module are not deprecated, that comment applied to previous versions. I'll release a new version with corrected docs.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top