Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

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

    fmt Fmt

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

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

    fmt Fmt.Internal.Formatters

    A YAML-like map formatter:

    >>> fmt $ blockMapF [("Odds", blockListF [1,3]), ("Evens", blockListF [2,4])]
    Odds:
    - 1
    - 3
    Evens:
    - 2
    - 4
    

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

    fmt Fmt.Internal.Formatters

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

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

    fmt Fmt.Internal.Formatters

    A JSON-like map formatter (unlike mapF, always multiline):

    >>> fmt $ jsonMapF [("Odds", jsonListF [1,3]), ("Evens", jsonListF [2,4])]
    {
    Odds:
    [
    1
    , 3
    ]
    , Evens:
    [
    2
    , 4
    ]
    }
    

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

    fmt Fmt.Internal.Formatters

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

  6. type AttributeMap = HashMap Text Attribute

    hs-opentelemetry-api OpenTelemetry.Attributes

    No documentation available.

  7. getAttributeMap :: Attributes -> AttributeMap

    hs-opentelemetry-api OpenTelemetry.Attributes

    No documentation available.

  8. type AttributeMap = HashMap Text Attribute

    hs-opentelemetry-api OpenTelemetry.Attributes.Map

    No documentation available.

  9. fromHashMap :: HashMap Token Element -> Baggage

    hs-opentelemetry-api OpenTelemetry.Baggage

    Convert a HashMap into Baggage

  10. threadContextMap :: ThreadContextMap

    hs-opentelemetry-api OpenTelemetry.Context.ThreadLocal

    This is a global variable that is used to store the thread-local context map. It is not intended to be used directly for production purposes, but is exposed for debugging purposes.

Page 521 of many | Previous | Next