Decoders.Decode
module type S = sig ... end
The following is useful only if you are creating a new Decoder implementation.
module type Decodeable = sig ... end
Signature of things that can be decoded.
module Make (M : Decodeable) : sig ... end
Derive decoders for a Decodeable.value
.