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 -> stringval of_obj : Stdlib.Obj.t -> tval make_to_obj : unit -> t -> Stdlib.Obj.t