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.
-
avro Data.Avro.Schema.ReadSchema Deconflicted record field.
-
avro Data.Avro.Schema.ReadSchema No documentation available.
-
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
-
avro Data.Avro.Schema.ReadSchema Read Float and use as is
-
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
-
avro Data.Avro.Schema.ReadSchema Read Long (64 bits) and use as is
-
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.
-
base-prelude BasePrelude No documentation available.
-
base-prelude BasePrelude No documentation available.
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).