Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
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) -> 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
map :: (FiniteBits w, Num w, Enum a, Enum b) => (a -> b) -> EnumSet w a -> EnumSet w bbitwise-enum Data.Enum.Set.Base 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.
map :: forall a b (n :: Nat) . (a -> b) -> Vec n a -> Vec n bclash-prelude Clash.Explicit.Prelude "map f xs" is the vector obtained by applying f to each element of xs, i.e.,
map f (x1 :> x2 :> ... :> xn :> Nil) == (f x1 :> f x2 :> ... :> f xn :> Nil)
and corresponds to the following circuit layout: