pj library

Classes

Codec<A>
A Codec is a product of an Encoder and a Decoder. It provides the functionality of converting between values of type A and JSON.
Decoder<A>
A Decoder provides the ability to convert JSON into values.
DecodingError
Encoder<A>
An Encoder provides the ability to convert from a type to JSON.
MissingFieldFailure
ParsingFailure

Typedefs

DecodeResult<A> = Either<DecodingError, A>