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. mapState :: ((a, s) -> (b, s)) -> State s a -> State s b

    rebase Rebase.Prelude

    Map both the return value and final state of a computation using the given function.

  2. mapStateT :: (m (a, s) -> n (b, s)) -> StateT s m a -> StateT s n b

    rebase Rebase.Prelude

    Map both the return value and final state of a computation using the given function.

  3. mapWriter :: ((a, w) -> (b, w')) -> Writer w a -> Writer w' b

    rebase Rebase.Prelude

    Map both the return value and output of a computation using the given function.

  4. mapWriterT :: (m (a, w) -> n (b, w')) -> WriterT w m a -> WriterT w' n b

    rebase Rebase.Prelude

    Map both the return value and output of a computation using the given function.

  5. mappend :: Monoid a => a -> a -> a

    rebase Rebase.Prelude

    An associative operation NOTE: This method is redundant and has the default implementation mappend = (<>) since base-4.11.0.0. Should it be implemented manually, since mappend is a synonym for (<>), it is expected that the two functions are defined the same way. In a future GHC release mappend will be removed from Monoid.

  6. mapMaybe :: forall (m :: Type -> Type) cl a b . Monad m => ClSF m cl a b -> ClSF m cl (Maybe a) (Maybe b)

    rhine FRP.Rhine.ClSF.Core

    Call a ClSF every time the input is 'Just a'. Caution: This will not change the time differences since the last tick. For example, while integrate 1 is approximately the same as timeInfoOf sinceInit, mapMaybe $ integrate 1 is very different from mapMaybe $ timeInfoOf sinceInit. The former only integrates when the input is Just 1, whereas the latter always returns the correct time since initialisation.

  7. mapExponential :: (C a, Arrow arrow) => a -> a -> arrow a a

    synthesizer-core Synthesizer.Causal.Displacement

    No documentation available.

  8. mapLinear :: (C a, Arrow arrow) => a -> a -> arrow a a

    synthesizer-core Synthesizer.Causal.Displacement

    No documentation available.

  9. mapAccumL :: (x -> acc -> (y, acc)) -> acc -> T x y

    synthesizer-core Synthesizer.Causal.Process

    No documentation available.

  10. mapAccum :: (a -> state -> (b, state)) -> state -> T a b

    synthesizer-core Synthesizer.CausalIO.Process

    No documentation available.

Page 209 of many | Previous | Next