Module OByteLib.Value

type t =
| Int of int
| Int32 of Stdlib.Int32.t
| Int64 of Stdlib.Int64.t
| Nativeint of Stdlib.Nativeint.t
| Float of float
| Float_array of float array
| String of string
| Object of t array
| Block of int * t array
val to_string : t -> string
val of_obj : Stdlib.Obj.t -> t
val make_to_obj : unit -> t -> Stdlib.Obj.t