Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. 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.

  2. 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.

  3. 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.

  4. 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.

  5. package aeson-schemas

    Easily consume JSON data on-demand with type-safety Parse JSON data easily and safely without defining new data types. Useful for deeply nested JSON data, which is difficult to parse using the default FromJSON instances.

  6. aesonKeyFromText :: Text -> AesonKey

    fakedata Faker.Internal.Types

    No documentation available.

  7. aesonKeyToText :: AesonKey -> Text

    fakedata Faker.Internal.Types

    No documentation available.

  8. aesonDecodeIO :: FromJSON a => ByteString -> IO a

    hspec-golden-aeson Test.Aeson.Internal.Utils

    run decode in IO, if it returns Left then throw an error.

  9. aesonify :: Document -> Object

    AesonBson Data.AesonBson

    Converts a BSON document to an AESON object.

  10. aesonifyValue :: Value -> Value

    AesonBson Data.AesonBson

    Converts a BSON value to JSON.

Page 5 of many | Previous | Next