This file is indexed.

/usr/share/doc/mlpost/html/Mlpost.Tree.Simple.html is in libmlpost-ocaml-doc 0.8.1-8build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="Start" href="index.html">
<link rel="Up" href="Mlpost.Tree.html">
<link title="Index of types" rel=Appendix href="index_types.html">
<link title="Index of values" rel=Appendix href="index_values.html">
<link title="Index of class attributes" rel=Appendix href="index_attributes.html">
<link title="Index of class methods" rel=Appendix href="index_methods.html">
<link title="Index of classes" rel=Appendix href="index_classes.html">
<link title="Index of modules" rel=Appendix href="index_modules.html">
<link title="Index of module types" rel=Appendix href="index_module_types.html">
<link title="Mlpost" rel="Chapter" href="Mlpost.html">
<link title="Mlpost_dot" rel="Chapter" href="Mlpost_dot.html">
<link title="Mlpost_lablgtk" rel="Chapter" href="Mlpost_lablgtk.html"><title>Mlpost.Tree.Simple</title>
</head>
<body>
<div class="navbar">&nbsp;<a class="up" href="Mlpost.Tree.html" title="Mlpost.Tree">Up</a>
&nbsp;</div>
<h1>Module <a href="type_Mlpost.Tree.Simple.html">Mlpost.Tree.Simple</a></h1>

<pre><span class="keyword">module</span> Simple: <code class="code">sig</code> <a href="Mlpost.Tree.Simple.html">..</a> <code class="code">end</code></pre><hr width="100%">

<pre><span id="TYPEt"><span class="keyword">type</span> <code class="type"></code>t</span> </pre>


<pre><span id="VALleaf"><span class="keyword">val</span> leaf</span> : <code class="type"><a href="Mlpost.Box.html#TYPEt">Box.t</a> -> <a href="Mlpost.Tree.Simple.html#TYPEt">t</a></code></pre>
<pre><span id="VALnode"><span class="keyword">val</span> node</span> : <code class="type">?ls:<a href="Mlpost.Num.html#TYPEt">Num.t</a> -><br>       ?cs:<a href="Mlpost.Num.html#TYPEt">Num.t</a> -><br>       ?arrow_style:<a href="Mlpost.Tree.html#TYPEarrow_style">Tree.arrow_style</a> -><br>       ?edge_style:<a href="Mlpost.Tree.html#TYPEedge_style">Tree.edge_style</a> -><br>       ?stroke:<a href="Mlpost.Color.html#TYPEt">Color.t</a> -><br>       ?brush:<a href="Mlpost.Brush.html#TYPEt">Brush.t</a> -><br>       ?pen:Pen.t -><br>       ?sep:<a href="Mlpost.Num.html#TYPEt">Num.t</a> -><br>       ?valign:<a href="Mlpost.Command.html#TYPEposition">Command.position</a> -><br>       ?halign:<a href="Mlpost.Command.html#TYPEposition">Command.position</a> -><br>       <a href="Mlpost.Box.html#TYPEt">Box.t</a> -> <a href="Mlpost.Tree.Simple.html#TYPEt">t</a> list -> <a href="Mlpost.Tree.Simple.html#TYPEt">t</a></code></pre><div class="info ">
a simple tree placement algorithm: align all subtrees horizontally ,
        and place the parent node above.
        Default arrow_style is <code class="code">Directed</code>.
	Default edge_style is <code class="code">Straight</code>.<br>
</div>
<div class="param_info"><code class="code">ls</code> : (level sep): vertical distance between levels.
        The default value is 1.0. A negative value draws the tree upward.</div>
<div class="param_info"><code class="code">cs</code> : (children sep): horizontal distance between siblings.
        The default value is 0.2.</div>
<div class="param_info"><code class="code">valign</code> : change alignment of parent node wrt. children
               (default: <code class="code">`Children</code>)</div>
<div class="param_info"><code class="code">halign</code> : change alignment of children (default: <code class="code">`Top</code>)</div>

<pre><span id="VALbin"><span class="keyword">val</span> bin</span> : <code class="type">?ls:<a href="Mlpost.Num.html#TYPEt">Num.t</a> -><br>       ?cs:<a href="Mlpost.Num.html#TYPEt">Num.t</a> -><br>       ?arrow_style:<a href="Mlpost.Tree.html#TYPEarrow_style">Tree.arrow_style</a> -><br>       ?edge_style:<a href="Mlpost.Tree.html#TYPEedge_style">Tree.edge_style</a> -><br>       ?stroke:<a href="Mlpost.Color.html#TYPEt">Color.t</a> -><br>       ?brush:<a href="Mlpost.Brush.html#TYPEt">Brush.t</a> -><br>       ?pen:Pen.t -><br>       ?sep:<a href="Mlpost.Num.html#TYPEt">Num.t</a> -><br>       <a href="Mlpost.Box.html#TYPEt">Box.t</a> -><br>       <a href="Mlpost.Tree.Simple.html#TYPEt">t</a> -> <a href="Mlpost.Tree.Simple.html#TYPEt">t</a> -> <a href="Mlpost.Tree.Simple.html#TYPEt">t</a></code></pre>
<pre><span id="VALto_box"><span class="keyword">val</span> to_box</span> : <code class="type"><a href="Mlpost.Tree.Simple.html#TYPEt">t</a> -> <a href="Mlpost.Box.html#TYPEt">Box.t</a></code></pre>
<pre><span id="VALdraw"><span class="keyword">val</span> draw</span> : <code class="type">?debug:bool -> <a href="Mlpost.Tree.Simple.html#TYPEt">t</a> -> <a href="Mlpost.Command.html#TYPEt">Command.t</a></code></pre></body></html>