Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
monad-logger-aeson Control.Monad.Logger.Aeson.Internal No documentation available.
keyMapFromList :: [(Key, v)] -> KeyMap vmonad-logger-aeson Control.Monad.Logger.Aeson.Internal No documentation available.
keyMapInsert :: Key -> v -> KeyMap v -> KeyMap vmonad-logger-aeson Control.Monad.Logger.Aeson.Internal No documentation available.
keyMapToList :: KeyMap v -> [(Key, v)]monad-logger-aeson Control.Monad.Logger.Aeson.Internal No documentation available.
keyMapUnion :: KeyMap v -> KeyMap v -> KeyMap vmonad-logger-aeson Control.Monad.Logger.Aeson.Internal No documentation available.
-
Monoidal map type Monoidal map type with support for semigroup and monoid subclasses.
-
No documentation available.
-
monoidmap Data.MonoidMap No documentation available.
foldMapWithKey :: Monoid r => (k -> v -> r) -> MonoidMap k v -> rmonoidmap Data.MonoidMap Folds over the keys and values in the map using the given monoid. Satisfies the following property:
foldMapWithKey f m == Map.foldMapWithKey f (toMap m)
foldMapWithKey' :: Monoid r => (k -> v -> r) -> MonoidMap k v -> rmonoidmap Data.MonoidMap A strict version of foldMapWithKey. Each application of mappend is evaluated before using the result in the next application.