Haskell:先进先出单子
是否有一个标准的(或者至少是常用的)带有用于 FIFO 队列的 monad 的包?我不久前在一篇论文中读到过关于这个,并且我已经使用过它几次,但是我想停止重新实现轮子(这很有趣,但效率低下)。
Is there a standard (or at least commonly used) package with a monad for FIFO queues? I read about this one in a paper a while ago, and I've used it a couple times, but I'd like to stop reimplementing wheels (it's fun, but unproductive).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为不存在。我将使用
State
monad 和Seq
容器作为状态。I don't think there is. I would use a
State
monad with aSeq
container as state.hackage 上有一个漂亮的 corecursive 队列版本: http://hackage.haskell.org/package /control-monad-queue
我不会以任何方式称其为标准,但它确实反映了相当多的工作和测试。
链接的 monad reader 文章也非常值得一读。
There's a nifty version of corecursive queues on hackage: http://hackage.haskell.org/package/control-monad-queue
I wouldn't call it standard by any means, but it certainly reflects a fair amount of work and testing.
The linked monad reader article is a really good read too.