module Report_generic:sig
..end
This module defines a generic output mode parametrized by an object.
class type converter =object
..end
The class type defining a generic output.
val output : (string -> unit) ->
string ->
converter ->
(string, int array) Stdlib.Hashtbl.t ->
(string, string) Stdlib.Hashtbl.t -> unit
output verbose file conv data points
writes the element for data
to file
file
using conv
for data conversion, verbose
for verbose output.
points
gives the marshalled locations of the points in the file.