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.

  1. mapF :: (IsList t, Item t ~ (k, v), Buildable k, Buildable v) => t -> Builder

    fmt Fmt

    A simple JSON-like map formatter; works for Map, HashMap, etc, as well as ordinary lists of pairs.

    >>> mapF [("a", 1), ("b", 4)]
    "{a: 1, b: 4}"
    
    For multiline output, use jsonMapF.

  2. mapF' :: (IsList t, Item t ~ (k, v)) => (k -> Builder) -> (v -> Builder) -> t -> Builder

    fmt Fmt

    A version of mapF that lets you supply your own building function for keys and values.

  3. mapF :: (IsList t, Item t ~ (k, v), Buildable k, Buildable v) => t -> Builder

    fmt Fmt.Internal.Formatters

    A simple JSON-like map formatter; works for Map, HashMap, etc, as well as ordinary lists of pairs.

    >>> mapF [("a", 1), ("b", 4)]
    "{a: 1, b: 4}"
    
    For multiline output, use jsonMapF.

  4. mapF' :: (IsList t, Item t ~ (k, v)) => (k -> Builder) -> (v -> Builder) -> t -> Builder

    fmt Fmt.Internal.Formatters

    A version of mapF that lets you supply your own building function for keys and values.

  5. mapExcept :: (Either e a -> Either e' b) -> Except e a -> Except e' b

    hasql Hasql.TestingKit.Preludes.Base

    Map the unwrapped computation using the given function.

  6. mapExceptT :: (m (Either e a) -> n (Either e' b)) -> ExceptT e m a -> ExceptT e' n b

    hasql Hasql.TestingKit.Preludes.Base

    Map the unwrapped computation using the given function.

  7. mapKeys :: (Eq k', Hashable k') => (k -> k') -> InsOrdHashMap k v -> InsOrdHashMap k' v

    insert-ordered-containers Data.HashMap.Strict.InsOrd

    Order preserving mapping of keys.

  8. mapMaybe :: (v1 -> Maybe v2) -> InsOrdHashMap k v1 -> InsOrdHashMap k v2

    insert-ordered-containers Data.HashMap.Strict.InsOrd

    No documentation available.

  9. mapMaybeWithKey :: (k -> v1 -> Maybe v2) -> InsOrdHashMap k v1 -> InsOrdHashMap k v2

    insert-ordered-containers Data.HashMap.Strict.InsOrd

    No documentation available.

  10. mapWithKey :: (k -> v1 -> v2) -> InsOrdHashMap k v1 -> InsOrdHashMap k v2

    insert-ordered-containers Data.HashMap.Strict.InsOrd

    No documentation available.

Page 140 of many | Previous | Next