decoders
Elm-inspired decoders for Ocaml
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
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
.