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.

  1. emptyKeyMap :: KeyMap v

    monad-logger-aeson Control.Monad.Logger.Aeson.Internal

    No documentation available.

  2. keyMapFromList :: [(Key, v)] -> KeyMap v

    monad-logger-aeson Control.Monad.Logger.Aeson.Internal

    No documentation available.

  3. keyMapInsert :: Key -> v -> KeyMap v -> KeyMap v

    monad-logger-aeson Control.Monad.Logger.Aeson.Internal

    No documentation available.

  4. keyMapToList :: KeyMap v -> [(Key, v)]

    monad-logger-aeson Control.Monad.Logger.Aeson.Internal

    No documentation available.

  5. keyMapUnion :: KeyMap v -> KeyMap v -> KeyMap v

    monad-logger-aeson Control.Monad.Logger.Aeson.Internal

    No documentation available.

  6. package monoidmap

    Monoidal map type Monoidal map type with support for semigroup and monoid subclasses.

  7. module Data.MonoidMap

    No documentation available.

  8. data MonoidMap k v

    monoidmap Data.MonoidMap

    No documentation available.

  9. foldMapWithKey :: Monoid r => (k -> v -> r) -> MonoidMap k v -> r

    monoidmap 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)
    

  10. foldMapWithKey' :: Monoid r => (k -> v -> r) -> MonoidMap k v -> r

    monoidmap Data.MonoidMap

    A strict version of foldMapWithKey. Each application of mappend is evaluated before using the result in the next application.

Page 991 of many | Previous | Next