Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 7fd1c43f42958fba85e306866166f488 > files > 12

ocaml-bisect-devel-1.0-3.beta.1mdv2010.0.i586.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
<link rel="Start" href="index.html">
<link rel="previous" href="Common.html">
<link rel="next" href="ReportHTML.html">
<link rel="Up" href="index.html">
<link title="Index of types" rel=Appendix href="index_types.html">
<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
<link title="Index of values" rel=Appendix href="index_values.html">
<link title="Index of modules" rel=Appendix href="index_modules.html">
<link title="Common" rel="Chapter" href="Common.html">
<link title="ReportGeneric" rel="Chapter" href="ReportGeneric.html">
<link title="ReportHTML" rel="Chapter" href="ReportHTML.html">
<link title="ReportStat" rel="Chapter" href="ReportStat.html">
<link title="ReportUtils" rel="Chapter" href="ReportUtils.html">
<link title="Runtime" rel="Chapter" href="Runtime.html"><title>Bisect : ReportGeneric</title>
</head>
<body>
<div class="navbar"><a href="Common.html">Previous</a>
&nbsp;<a href="index.html">Up</a>
&nbsp;<a href="ReportHTML.html">Next</a>
</div>
<center><h1>Module <a href="type_ReportGeneric.html">ReportGeneric</a></h1></center>
<br>
<pre><span class="keyword">module</span> ReportGeneric: <code class="code">sig</code> <a href="ReportGeneric.html">..</a> <code class="code">end</code></pre>This module defines a generic output mode parametrized by functions.<br>
<hr width="100%">
<pre><span class="keyword">type</span> <a name="TYPEconverter"></a><code class="type"></code>converter = <code class="type">< file_footer : string -> string; file_header : string -> string;<br>         file_summary : <a href="ReportStat.html#TYPEall">ReportStat.all</a> -> string; footer : string; header : <br>         string; point : int -> int -> <a href="Common.html#TYPEpoint_kind">Common.point_kind</a> -> string;<br>         summary : <a href="ReportStat.html#TYPEall">ReportStat.all</a> -> string ></code> </pre>

<pre><span class="keyword">val</span> <a name="VALoutput"></a>output : <code class="type">(string -> unit) -><br>       string -> <a href="ReportGeneric.html#TYPEconverter">converter</a> -> (string, int array) Hashtbl.t -> unit</code></pre><div class="info">
<code class="code">output verbose file conv data</code> writes the element for <code class="code">data</code> to file
    <code class="code">file</code> using <code class="code">conv</code> for data conversion and <code class="code">verbose</code> for verbose output.
    The methods of the <code class="code">conv</code> instance are used as follows:<ul>
<li><code class="code">header</code> should return the overall header for output;</li>
<li><code class="code">footer</code> should return the overall footer for output;</li>
<li><code class="code">summary</code> should return the overall summary for passed statistics;</li>
<li><code class="code">file_header</code> should return the overall header for passed file;</li>
<li><code class="code">file_footer</code> should return the overall footer for passed file;</li>
<li><code class="code">file_summary</code> should return the file summary for passed statistics;</li>
<li><code class="code">point</code> shoudl return the output for a given point, the parameters
    being: offset, number of visits, and point kind.</li>
</ul>
<br>
</div>
</body></html>