Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
map :: (SymVal a, SymVal b) => (SBV a -> SBV b) -> SMaybe a -> SMaybe bsbv Data.SBV.Maybe Map over the Just side of a Maybe.
>>> prove $ \x -> fromJust (map (+1) (sJust x)) .== x+(1::SInteger) Q.E.D. >>> let f = uninterpret "f" :: SInteger -> SBool >>> prove $ \x -> map f (sJust x) .== sJust (f x) Q.E.D. >>> map f sNothing .== sNothing True
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.