Volgo_stdlib.Dyninclude module type of struct include Dyn endtype t = Dyn.t = | Opaque| Unit| Int of int| Int32 of int32| Int64 of int64| Nativeint of nativeint| Bool of bool| String of string| Bytes of bytes| Char of char| Float of float| Option of t option| List of t list| Array of t array| Tuple of t list| Record of (string * t) list| Variant of string * t list| Map of (t * t) list| Set of t listval hash : t -> intval pp : t -> 'a Pp.tval to_string : t -> stringtype !'a builder = 'a -> tval unit : unit builderval char : char builderval string : string builderval int : int builderval int32 : int32 builderval int64 : int64 builderval nativeint : nativeint builderval float : float builderval bool : bool builderval opaque : 'a buildertype json = [ | `Null| `Bool of bool| `Int of int| `Float of float| `String of string| `Assoc of (string * json) list| `List of json list ]A JSON-like type, structurally compatible with Yojson.Basic.t without adding the dependency.
val to_json : Dyn.t -> jsonConvert a dynamic value to JSON.