gpt4 book ai didi

haskell - 如何实现 mapAccumM?

转载 作者:行者123 更新时间:2023-12-02 02:13:35 28 4
gpt4 key购买 nike

我希望 mapM 在传递累加器时可遍历的对象上。我想到了:

import Control.Applicative
import Data.Traversable
import Control.Monad.State

mapAccumM :: (Applicative m, Traversable t, MonadState s m)
=> (s -> a -> m (s, b)) -> s -> t a -> m (t b)
mapAccumM f acc0 xs = put acc0 >> traverse g xs
where
g x = do
oldAcc <- get
(newAcc, y) <- f oldAcc x
put newAcc
return y

如果没有 State monad,如何做到这一点?

最佳答案

roconnor 在 #haskell 上为我回答了这个问题

这解决了我的问题,但请注意累加器在元组的第二个元素而不是第一个元素中返回

mapAccumM :: (Monad m, Functor m, Traversable t) => (a -> b -> m (c, a)) -> a -> t b -> m (t c)
mapAccumM f = flip (evalStateT . (Data.Traversable.traverse (StateT . (flip f))))

或者返回累加器:

mapAccumM' :: (Monad m, Functor m, Traversable t) => (a -> b -> m (c, a)) -> a -> t b -> m (t c, a)
mapAccumM' f = flip (runStateT . (Data.Traversable.traverse (StateT . (flip f))))

关于haskell - 如何实现 mapAccumM?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11652809/

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