Hoogle Search

Within LTS Haskell 22.23 (ghc-9.6.5)

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

  1. aesonOptionsCookie :: Options

    webdriver Test.WebDriver.Cookies

    No documentation available.

  2. aesonResultToWD :: MonadBaseControl IO wd => Result a -> wd a

    webdriver Test.WebDriver.JSON

    Convert an Aeson parser result to WD.

  3. aesonDefaults :: HasSwaggerAesonOptions a => Proxy a -> POP Maybe (Code a)

    openapi3 Data.OpenApi.Internal.AesonUtils

    No documentation available.

  4. aesonDefaults :: HasSwaggerAesonOptions a => Proxy a -> POP Maybe (Code a)

    swagger2 Data.Swagger.Internal.AesonUtils

    No documentation available.

  5. package aeson-casing

    Tools to change the formatting of field names in Aeson instances. Tools to change the formatting of field names in Aeson instances. This includes CamelCasing, Pascal Casing and Snake Casing.

  6. aesonDrop :: Int -> (String -> String) -> Options

    aeson-casing Data.Aeson.Casing

    Creates an Aeson options object that drops a specific number of characters from the front of a field name, then applies a casing function.

  7. aesonPrefix :: (String -> String) -> Options

    aeson-casing Data.Aeson.Casing

    Creates an Aeson options object that drops the field name prefix from a field, then applies a casing function. We assume a convention of the prefix always being lower case, and the first letter of the actual field name being uppercase. This accommodated for field names in GHC 7.8 and below.

    data Person = Person
    { personFirstName :: Text
    , personLastName  :: Text
    } deriving (Generic)
    
    data Dog = Dog
    { dogFirstName :: Text
    } deriving (Generic)
    
    In the above cases, dog and person are always dropped from the JSON field names.

  8. aesonDrop :: Int -> (String -> String) -> Options

    aeson-casing Data.Aeson.Casing.Internal

    Creates an Aeson options object that drops a specific number of characters from the front of a field name, then applies a casing function.

  9. aesonPrefix :: (String -> String) -> Options

    aeson-casing Data.Aeson.Casing.Internal

    Creates an Aeson options object that drops the field name prefix from a field, then applies a casing function. We assume a convention of the prefix always being lower case, and the first letter of the actual field name being uppercase. This accommodated for field names in GHC 7.8 and below.

    data Person = Person
    { personFirstName :: Text
    , personLastName  :: Text
    } deriving (Generic)
    
    data Dog = Dog
    { dogFirstName :: Text
    } deriving (Generic)
    
    In the above cases, dog and person are always dropped from the JSON field names.

  10. package aeson-diff

    Extract and apply patches to JSON documents. This is a small library for working with changes to JSON documents. It includes a library and two command-line executables in the style of the diff(1) and patch(1) commands available on many systems.

Page 4 of many | Previous | Next