Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapAccum :: MonadMoment m => acc -> Event (acc -> (x, acc)) -> m (Event x, Behavior acc)reactive-banana Reactive.Banana.Combinators mapEventIO :: (a -> IO b) -> Event a -> MomentIO (Event b)reactive-banana Reactive.Banana.Frameworks Build a new Event that contains the result of an IO computation. The input and result events will not be simultaneous anymore, the latter will occur later than the former. Please use the fmap for Event if your computation is pure. Implementation:
mapEventIO f e1 = do (e2, handler) <- newEvent reactimate $ (\a -> f a >>= handler) <$> e1 return e2
mapAccumM :: Monad m => (a -> s -> m (b, s)) -> s -> [a] -> m ([b], s)reactive-banana Reactive.Banana.Prim.Mid mapAccum for a monad.
mapAccumM_ :: Monad m => (a -> s -> m (b, s)) -> s -> [a] -> m ()reactive-banana Reactive.Banana.Prim.Mid Strict mapAccum for a monad. Discards results.
mapL :: (a -> b) -> Latch a -> Latch breactive-banana Reactive.Banana.Prim.Mid No documentation available.
mapP :: (a -> b) -> Pulse a -> Build (Pulse b)reactive-banana Reactive.Banana.Prim.Mid No documentation available.
mapAccum :: MonadMoment m => acc -> Event (acc -> (x, acc)) -> m (Event x, Behavior acc)reactive-banana-bunch Reactive.Banana.Bunch.Combinators No documentation available.
mapInsert :: (IConnection conn, ToSql SqlValue a) => conn -> Insert a -> [a] -> IO [Integer]relational-query-HDBC Database.HDBC.Record Prepare and insert each record.
mapUpdate :: (IConnection conn, ToSql SqlValue a) => conn -> Update a -> [a] -> IO [Integer]relational-query-HDBC Database.HDBC.Record Prepare and update with each parameter list.
mapInsert :: (IConnection conn, ToSql SqlValue a) => conn -> Insert a -> [a] -> IO [Integer]relational-query-HDBC Database.HDBC.Record.Insert Prepare and insert each record.