Hoogle Search

Within LTS Haskell 24.5 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. mapExceptional :: (e0 -> e1) -> (a -> b) -> Exceptional e0 a -> Exceptional e1 b

    explicit-exception Control.Monad.Exception.Asynchronous.Strict

    No documentation available.

  2. mapExceptionalT :: (m (Exceptional e0 a) -> n (Exceptional e1 b)) -> ExceptionalT e0 m a -> ExceptionalT e1 n b

    explicit-exception Control.Monad.Exception.Asynchronous.Strict

    No documentation available.

  3. mapM :: Monad m => (a -> m b) -> Exceptional e a -> m (Exceptional e b)

    explicit-exception Control.Monad.Exception.Asynchronous.Strict

    No documentation available.

  4. mapException :: (e0 -> e1) -> Exceptional e0 a -> Exceptional e1 a

    explicit-exception Control.Monad.Exception.Synchronous

    No documentation available.

  5. mapExceptionT :: forall (m :: Type -> Type) e0 e1 a . Monad m => (e0 -> e1) -> ExceptionalT e0 m a -> ExceptionalT e1 m a

    explicit-exception Control.Monad.Exception.Synchronous

    No documentation available.

  6. mapExceptional :: (e0 -> e1) -> (a -> b) -> Exceptional e0 a -> Exceptional e1 b

    explicit-exception Control.Monad.Exception.Synchronous

    No documentation available.

  7. mapExceptionalT :: (m (Exceptional e0 a) -> n (Exceptional e1 b)) -> ExceptionalT e0 m a -> ExceptionalT e1 n b

    explicit-exception Control.Monad.Exception.Synchronous

    No documentation available.

  8. mapRIO :: (outer -> inner) -> RIO inner a -> RIO outer a

    rio RIO

    Lift one RIO env to another.

  9. mapAccumL :: (acc -> Word8 -> (acc, Word8)) -> acc -> ByteString -> (acc, ByteString)

    rio RIO.ByteString

    The mapAccumL function behaves like a combination of map and foldl; it applies a function to each element of a ByteString, passing an accumulating parameter from left to right, and returning a final value of this accumulator together with the new ByteString.

  10. mapAccumR :: (acc -> Word8 -> (acc, Word8)) -> acc -> ByteString -> (acc, ByteString)

    rio RIO.ByteString

    The mapAccumR function behaves like a combination of map and foldr; it applies a function to each element of a ByteString, passing an accumulating parameter from right to left, and returning a final value of this accumulator together with the new ByteString.

Page 123 of many | Previous | Next