package decoders

  1. Overview
  2. Docs
module type S = sig ... end

Creating a Decoder implementation

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.