Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. data ReadField

    avro Data.Avro.Schema.ReadSchema

    Deconflicted record field.

  2. ReadField :: Text -> [Text] -> Maybe Text -> Maybe Order -> FieldStatus -> ReadSchema -> Maybe DefaultValue -> ReadField

    avro Data.Avro.Schema.ReadSchema

    No documentation available.

  3. data ReadFloat

    avro Data.Avro.Schema.ReadSchema

    How to decode a value of target type Float. This type controls how many bits are needed to be read from the encoded bytestring. The number of bits can be different depending on differences between reader and writer schemas. The rules are described in https://avro.apache.org/docs/current/spec.html#Schema+Resolution

  4. ReadFloat :: ReadFloat

    avro Data.Avro.Schema.ReadSchema

    Read Float and use as is

  5. data ReadLong

    avro Data.Avro.Schema.ReadSchema

    How to decode a value of target type Long. This type controls how many bits are needed to be read from the encoded bytestring. The number of bits can be different depending on differences between reader and writer schemas. The rules are described in https://avro.apache.org/docs/current/spec.html#Schema+Resolution

  6. ReadLong :: ReadLong

    avro Data.Avro.Schema.ReadSchema

    Read Long (64 bits) and use as is

  7. data ReadSchema

    avro Data.Avro.Schema.ReadSchema

    This type represents a deconflicted version of a Schema. Schema resolution is described in Avro specification: https://avro.apache.org/docs/current/spec.html#Schema+Resolution This library represents "normal" schema and "deconflicted" schema as different types to avoid confusion between these two usecases (we shouldn't serialise values with such schema) and to be able to accomodate some extra information that links between how data is supposed transformed between what reader wants and what writer has.

  8. data ReadP a

    base-prelude BasePrelude

    No documentation available.

  9. data ReadPrec a

    base-prelude BasePrelude

    No documentation available.

  10. type ReadS a = String -> [(a, String)]

    base-prelude BasePrelude

    A parser for a type a, represented as a function that takes a String and returns a list of possible parses as (a,String) pairs. Note that this kind of backtracking parser is very inefficient; reading a large structure may be quite slow (cf ReadP).

Page 400 of many | Previous | Next