This file is indexed.

/usr/share/doc/liblwt-ocaml-dev/api/Lwt.Infix.html is in liblwt-ocaml-doc 2.7.1-4build1.

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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="Lwt.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 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 class types" rel=Appendix href="index_class_types.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="Lwt_condition" rel="Chapter" href="Lwt_condition.html">
<link title="Lwt_list" rel="Chapter" href="Lwt_list.html">
<link title="Lwt" rel="Chapter" href="Lwt.html">
<link title="Lwt_mutex" rel="Chapter" href="Lwt_mutex.html">
<link title="Lwt_mvar" rel="Chapter" href="Lwt_mvar.html">
<link title="Lwt_pool" rel="Chapter" href="Lwt_pool.html">
<link title="Lwt_result" rel="Chapter" href="Lwt_result.html">
<link title="Lwt_sequence" rel="Chapter" href="Lwt_sequence.html">
<link title="Lwt_stream" rel="Chapter" href="Lwt_stream.html">
<link title="Lwt_switch" rel="Chapter" href="Lwt_switch.html">
<link title="Lwt_pqueue" rel="Chapter" href="Lwt_pqueue.html">
<link title="Lwt_glib" rel="Chapter" href="Lwt_glib.html">
<link title="Lwt_preemptive" rel="Chapter" href="Lwt_preemptive.html">
<link title="Lwt_react" rel="Chapter" href="Lwt_react.html">
<link title="Lwt_ssl" rel="Chapter" href="Lwt_ssl.html">
<link title="Lwt_log_core" rel="Chapter" href="Lwt_log_core.html">
<link title="Lwt_log_rules" rel="Chapter" href="Lwt_log_rules.html">
<link title="Lwt_chan" rel="Chapter" href="Lwt_chan.html">
<link title="Lwt_daemon" rel="Chapter" href="Lwt_daemon.html">
<link title="Lwt_gc" rel="Chapter" href="Lwt_gc.html">
<link title="Lwt_io" rel="Chapter" href="Lwt_io.html">
<link title="Lwt_log" rel="Chapter" href="Lwt_log.html">
<link title="Lwt_main" rel="Chapter" href="Lwt_main.html">
<link title="Lwt_process" rel="Chapter" href="Lwt_process.html">
<link title="Lwt_throttle" rel="Chapter" href="Lwt_throttle.html">
<link title="Lwt_timeout" rel="Chapter" href="Lwt_timeout.html">
<link title="Lwt_unix" rel="Chapter" href="Lwt_unix.html">
<link title="Lwt_sys" rel="Chapter" href="Lwt_sys.html">
<link title="Lwt_engine" rel="Chapter" href="Lwt_engine.html">
<link title="Lwt_bytes" rel="Chapter" href="Lwt_bytes.html">
<link title="Pa_lwt" rel="Chapter" href="Pa_lwt.html">
<link title="Pa_lwt_log" rel="Chapter" href="Pa_lwt_log.html">
<link title="Ppx_lwt" rel="Chapter" href="Ppx_lwt.html"><title>Lwt.Infix</title>
</head>
<body>
<div class="navbar">&nbsp;<a class="up" href="Lwt.html" title="Lwt">Up</a>
&nbsp;</div>
<h1>Module <a href="type_Lwt.Infix.html">Lwt.Infix</a></h1>

<pre><span class="keyword">module</span> Infix: <code class="code"><span class="keyword">sig</span></code> <a href="Lwt.Infix.html">..</a> <code class="code"><span class="keyword">end</span></code></pre><div class="info module top">
Infix operators. You should open only this module.<br>
</div>
<hr width="100%">

<pre><span id="VAL(>>=)"><span class="keyword">val</span> (&gt;&gt;=)</span> : <code class="type">'a <a href="Lwt.html#TYPEt">Lwt.t</a> -> ('a -> 'b <a href="Lwt.html#TYPEt">Lwt.t</a>) -> 'b <a href="Lwt.html#TYPEt">Lwt.t</a></code></pre><div class="info ">
<code class="code">t&nbsp;&gt;&gt;=&nbsp;f</code> is an alternative notation for <code class="code">bind&nbsp;t&nbsp;f</code>.<br>
</div>

<pre><span id="VAL(=<<)"><span class="keyword">val</span> (=&lt;&lt;)</span> : <code class="type">('a -> 'b <a href="Lwt.html#TYPEt">Lwt.t</a>) -> 'a <a href="Lwt.html#TYPEt">Lwt.t</a> -> 'b <a href="Lwt.html#TYPEt">Lwt.t</a></code></pre><div class="info ">
<code class="code">f&nbsp;=&lt;&lt;&nbsp;t</code> is <code class="code">t&nbsp;&gt;&gt;=&nbsp;f</code><br>
</div>

<pre><span id="VAL(>|=)"><span class="keyword">val</span> (&gt;|=)</span> : <code class="type">'a <a href="Lwt.html#TYPEt">Lwt.t</a> -> ('a -> 'b) -> 'b <a href="Lwt.html#TYPEt">Lwt.t</a></code></pre><div class="info ">
<code class="code">m&nbsp;&gt;|=&nbsp;f</code> is <code class="code">map&nbsp;f&nbsp;m</code><br>
</div>

<pre><span id="VAL(=|<)"><span class="keyword">val</span> (=|&lt;)</span> : <code class="type">('a -> 'b) -> 'a <a href="Lwt.html#TYPEt">Lwt.t</a> -> 'b <a href="Lwt.html#TYPEt">Lwt.t</a></code></pre><div class="info ">
<code class="code">f&nbsp;=|&lt;&nbsp;m</code> is <code class="code">map&nbsp;f&nbsp;m</code><br>
</div>

<pre><span id="VAL(<?>)"><span class="keyword">val</span> (&lt;?&gt;)</span> : <code class="type">'a <a href="Lwt.html#TYPEt">Lwt.t</a> -> 'a <a href="Lwt.html#TYPEt">Lwt.t</a> -> 'a <a href="Lwt.html#TYPEt">Lwt.t</a></code></pre><div class="info ">
<code class="code">t&nbsp;&lt;?&gt;&nbsp;t'</code> is the same as <code class="code">choose&nbsp;[t;&nbsp;t']</code><br>
</div>

<pre><span id="VAL(<&>)"><span class="keyword">val</span> (&lt;&amp;&gt;)</span> : <code class="type">unit <a href="Lwt.html#TYPEt">Lwt.t</a> -> unit <a href="Lwt.html#TYPEt">Lwt.t</a> -> unit <a href="Lwt.html#TYPEt">Lwt.t</a></code></pre><div class="info ">
<code class="code">t&nbsp;&lt;&amp;&gt;&nbsp;t'</code> is the same as <code class="code">join&nbsp;[t;&nbsp;t']</code><br>
</div>
</body></html>