Coq_checklib.AnalyzeRepresentation of data allocated on the OCaml heap.
type obj = | | Struct of int * data array | 
| | Int64 of Stdlib.Int64.t | 
| | Float64 of float | 
| | String of string | 
module LargeArray : sig ... endA data structure similar to arrays but allowing to overcome the 2^22 length limitation on 32-bit architecture.
val parse_channel : Stdlib.in_channel -> data * obj LargeArray.tval parse_string : string -> data * obj LargeArray.tmodule type Input = sig ... endType of inputs
module type S = sig ... endval instantiate : (data * obj LargeArray.t) -> Stdlib.Obj.tCreate the OCaml object out of the reified representation.