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.
-
classy-prelude-yesod ClassyPrelude.Yesod Apply a function to all the output values of a ConduitT. This mimics the behavior of fmap for a Source and Conduit in pre-0.4 days. It can also be simulated by fusing with the map conduit from Data.Conduit.List. Since 0.4.1
-
classy-prelude-yesod ClassyPrelude.Yesod Same as mapOutput, but use a function that returns Maybe values. Since 0.5.0
mapToJSON :: [(Text, PersistValue)] -> Textclassy-prelude-yesod ClassyPrelude.Yesod Convert map (list of tuples) into textual representation of JSON object. This is a type-constrained synonym for toJsonText.
mapToList :: IsMap map => map -> [(ContainerKey map, MapValue map)]classy-prelude-yesod ClassyPrelude.Yesod Convert a map to a list of key-value pairs.
mapWhileC :: forall (m :: Type -> Type) a b . Monad m => (a -> Maybe b) -> ConduitT a b m ()classy-prelude-yesod ClassyPrelude.Yesod Map values as long as the result is Just.
mapWithKey :: IsMap map => (ContainerKey map -> MapValue map -> MapValue map) -> map -> mapclassy-prelude-yesod ClassyPrelude.Yesod Apply a function over every key-value pair of a map.
mappend :: Monoid a => a -> a -> aclassy-prelude-yesod ClassyPrelude.Yesod 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.
mappendRecordHashMap :: (Monoid r, IsRecordHashMap r c m) => m -> m -> mcolumnar Text.Columnar often we will want to construct a Monoid HashMap from Monoid records
mappendRecordMap :: (Monoid r, IsRecordIntMap r c m) => m -> m -> mcolumnar Text.Columnar often we will want to construct a Monoid Intmap from Monoid records
-
constrained-categories Control.Category.Constrained.Prelude mapEither f ≡ sum2product . fmap f