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.
map :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> Pipe m a bstreamly-core Streamly.Internal.Data.Pipe Lift a pure function to a Pipe.
map :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> Stream m a -> Stream m bstreamly-core Streamly.Internal.Data.Stream No documentation available.
map :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> Stream m a -> Stream m bstreamly-core Streamly.Internal.Data.Stream No documentation available.
map :: forall a b (m :: Type -> Type) . (a -> b) -> StreamK m a -> StreamK m bstreamly-core Streamly.Internal.Data.StreamK No documentation available.
map :: forall (m :: Type -> Type) b c a . Functor m => (b -> c) -> Unfold m a b -> Unfold m a cstreamly-core Streamly.Internal.Data.Unfold Map a function on the output of the unfold (the type b).
>>> map f = Unfold.map2 (const f)
Pre-releasemap :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> Stream m a -> Stream m bvector-stream Data.Stream.Monadic Map a function over a Stream
map :: Nat -> (Nat -> LocalId -> Exp) -> Exp -> ExpAgda Agda.Compiler.JS.Substitution No documentation available.
map :: Ord b => (a -> b) -> Bag a -> Bag bAgda Agda.Utils.Bag O(n).
map :: (a -> b) -> NonEmpty a -> NonEmpty bAgda Agda.Utils.List1 Map a function over a NonEmpty stream.
map :: (AsEnumSet a, AsEnumSet b) => (a -> b) -> EnumSet a -> EnumSet bbitwise-enum Data.Enum.Set O(n). map f s is the set obtained by applying f to each element of s. It's worth noting that the size of the result may be smaller if, for some (x,y), x /= y && f x == f y