Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
streaming Streaming.Prelude A version of mapped that imposes a Functor constraint on the target functor rather than the source functor. This version should be preferred if fmap on the target functor is cheaper.
-
streaming Streaming.Prelude Map layers of one functor to another with a transformation. Compare hoist, which has a similar effect on the monadic parameter.
maps id = id maps f . maps g = maps (f . g)
-
streaming Streaming.Prelude Map layers of one functor to another with a transformation. Compare hoist, which has a similar effect on the monadic parameter.
mapsPost id = id mapsPost f . mapsPost g = mapsPost (f . g) mapsPost f = maps f
mapsPost is essentially the same as maps, but it imposes a Functor constraint on its target functor rather than its source functor. It should be preferred if fmap is cheaper for the target functor than for the source functor. mapMaybe :: Filterable f => (a -> Maybe b) -> f a -> f bwitherable Witherable Like mapMaybe.
mapStateVar :: (b -> a) -> (a -> b) -> StateVar a -> StateVar bStateVar Data.StateVar Change the type of a StateVar
mapFromUnboxed :: PrimType a => (a -> b) -> UArray a -> Array bbasement Basement.BoxedArray No documentation available.
mapToUnboxed :: PrimType b => (a -> b) -> Array a -> UArray bbasement Basement.BoxedArray No documentation available.
mappend :: Monoid a => a -> a -> abasement Basement.Compat.Base 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.
mappend :: Monoid a => a -> a -> abasement Basement.Imports 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.
mapM :: forall m a b (n :: Nat) . Monad m => (a -> m b) -> ListN n a -> m (ListN n b)basement Basement.Sized.List Map each element of a List to a monadic action, evaluate these actions sequentially and collect the results