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.
mapOutput :: forall p o i u (m :: Type -> Type) a . (p -> o) -> Pipe i p u m a -> Pipe i o u m aconduino Data.Conduino Map over the downstream output type. If you want to map over the result type, use fmap.
mapUpRes :: forall u v i o (m :: Type -> Type) a . (u -> v) -> Pipe i o v m a -> Pipe i o u m aconduino Data.Conduino (Contravariantly) map over the upstream result type.
mapAccum :: forall i s o u (m :: Type -> Type) . (i -> s -> (s, o)) -> s -> Pipe i o u m uconduino Data.Conduino.Combinators Map a pure "stateful" function over each incoming item. Give a function to update the state and return an output and an initial state.
mapM :: Monad m => (i -> m o) -> Pipe i o u m uconduino Data.Conduino.Combinators Map a monadic function to process every input, and yield its output.
mapInput :: forall i j o u (m :: Type -> Type) a . (i -> j) -> Pipe j o u m a -> Pipe i o u m aconduino Data.Conduino.Internal (Contravariantly) map over the expected input type.
mapOutput :: forall p o i u (m :: Type -> Type) a . (p -> o) -> Pipe i p u m a -> Pipe i o u m aconduino Data.Conduino.Internal Map over the downstream output type. If you want to map over the result type, use fmap.
mapUpRes :: forall u v i o (m :: Type -> Type) a . (u -> v) -> Pipe i o v m a -> Pipe i o u m aconduino Data.Conduino.Internal (Contravariantly) map over the upstream result type.
mappend :: Monoid a => a -> a -> aconfiguration-tools Configuration.Utils.CommandLine 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.
-
construct Construct Converts a format for serialized streams of type s so it works for streams of type t instead. The argument functions may return Nothing to indicate they have insuficient input to perform the conversion.
-
construct Construct Converts a format for in-memory values of type a so it works for values of type b instead. The argument functions may signal conversion failure by returning Nothing.