Coq_checklib.Analyze
Representation 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 ... end
A 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.t
val parse_string : string -> data * obj LargeArray.t
module type Input = sig ... end
Type of inputs
module type S = sig ... end
val instantiate : (data * obj LargeArray.t) -> Stdlib.Obj.t
Create the OCaml object out of the reified representation.