Runner.Make
Builds a new runner for encoders using a specific tree.
module T : TREE
type tree = T.tree
val encode : 'a t -> 'a -> tree -> tree Lwt.t
encode enc x tree encodes a value x using the encoder enc into the provided tree.
encode enc x tree
x
enc
tree
val decode : 'a t -> tree -> 'a Lwt.t
decode enc x tree decodes a value using the encoder enc from the provided tree.
decode enc x tree