Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapRWST :: (m (a, s, w) -> n (b, s, w')) -> RWST r w s m a -> RWST r w' s n bmtl-prelude MTLPrelude Map the inner computation using the given function.
mapReader :: (a -> b) -> Reader r a -> Reader r bmtl-prelude MTLPrelude Transform the value returned by a Reader.
mapReaderT :: (m a -> n b) -> ReaderT r m a -> ReaderT r n bmtl-prelude MTLPrelude Transform the computation inside a ReaderT.
runReaderT (mapReaderT f m) = f . runReaderT m
mapState :: ((a, s) -> (b, s)) -> State s a -> State s bmtl-prelude MTLPrelude Map both the return value and final state of a computation using the given function.
mapStateT :: (m (a, s) -> n (b, s)) -> StateT s m a -> StateT s n bmtl-prelude MTLPrelude Map both the return value and final state of a computation using the given function.
mapWriter :: ((a, w) -> (b, w')) -> Writer w a -> Writer w' bmtl-prelude MTLPrelude Map both the return value and output of a computation using the given function.
mapWriterT :: (m (a, w) -> n (b, w')) -> WriterT w m a -> WriterT w' n bmtl-prelude MTLPrelude Map both the return value and output of a computation using the given function.
runWriterT (mapWriterT f m) = f (runWriterT m)
mapParseError :: Ord e' => (e -> e') -> ParseError s e -> ParseError s e'network-uri-template Network.URI.Template.Internal.Parse Modify the custom data component in a parse error. This could be done via fmap if not for the Ord constraint.
-
oeis2 Math.OEIS No documentation available.
-
oeis2 Math.OEIS.Types No documentation available.