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.

  1. mapAccum :: MonadMoment m => acc -> Event (acc -> (x, acc)) -> m (Event x, Behavior acc)

    reactive-banana Reactive.Banana.Combinators

    Efficient combination of accumE and accumB.

  2. 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
    

  3. mapAccumM :: Monad m => (a -> s -> m (b, s)) -> s -> [a] -> m ([b], s)

    reactive-banana Reactive.Banana.Prim.Mid

    mapAccum for a monad.

  4. mapAccumM_ :: Monad m => (a -> s -> m (b, s)) -> s -> [a] -> m ()

    reactive-banana Reactive.Banana.Prim.Mid

    Strict mapAccum for a monad. Discards results.

  5. mapL :: (a -> b) -> Latch a -> Latch b

    reactive-banana Reactive.Banana.Prim.Mid

    No documentation available.

  6. mapP :: (a -> b) -> Pulse a -> Build (Pulse b)

    reactive-banana Reactive.Banana.Prim.Mid

    No documentation available.

  7. mapAccum :: MonadMoment m => acc -> Event (acc -> (x, acc)) -> m (Event x, Behavior acc)

    reactive-banana-bunch Reactive.Banana.Bunch.Combinators

    No documentation available.

  8. mapInsert :: (IConnection conn, ToSql SqlValue a) => conn -> Insert a -> [a] -> IO [Integer]

    relational-query-HDBC Database.HDBC.Record

    Prepare and insert each record.

  9. 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.

  10. mapInsert :: (IConnection conn, ToSql SqlValue a) => conn -> Insert a -> [a] -> IO [Integer]

    relational-query-HDBC Database.HDBC.Record.Insert

    Prepare and insert each record.

Page 227 of many | Previous | Next