This file is indexed.

/usr/share/doc/libghc-pointedlist-doc/html/Data-List-PointedList-Circular.html is in libghc-pointedlist-doc 0.6.1-6.

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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Data.List.PointedList.Circular</title><link href="ocean.css" rel="stylesheet" type="text/css" title="Ocean" /><script src="haddock-util.js" type="text/javascript"></script><script src="file:///usr/share/javascript/mathjax/MathJax.js" type="text/javascript"></script><script type="text/javascript">//<![CDATA[
window.onload = function () {pageLoad();setSynopsis("mini_Data-List-PointedList-Circular.html");};
//]]>
</script></head><body><div id="package-header"><ul class="links" id="page-menu"><li><a href="src/Data-List-PointedList-Circular.html">Source</a></li><li><a href="index.html">Contents</a></li><li><a href="doc-index.html">Index</a></li></ul><p class="caption">pointedlist-0.6.1: A zipper-like comonad which works as a list, tracking a position.</p></div><div id="content"><div id="module-header"><table class="info"><tr><th>Safe Haskell</th><td>Safe</td></tr><tr><th>Language</th><td>Haskell98</td></tr></table><p class="caption">Data.List.PointedList.Circular</p></div><div id="synopsis"><p id="control.syn" class="caption expander" onclick="toggleSection('syn')">Synopsis</p><ul id="section.syn" class="hide" onclick="toggleSection('syn')"><li class="src short">module <a href="Data-List-PointedList.html">Data.List.PointedList</a></li><li class="src short"><a href="#v:next">next</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a</li><li class="src short"><a href="#v:previous">previous</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a</li><li class="src short"><a href="#v:delete">delete</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybe.html#t:Maybe">Maybe</a> (<a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a)</li><li class="src short"><a href="#v:deleteLeft">deleteLeft</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybe.html#t:Maybe">Maybe</a> (<a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a)</li><li class="src short"><a href="#v:deleteRight">deleteRight</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybe.html#t:Maybe">Maybe</a> (<a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a)</li><li class="src short"><a href="#v:moveN">moveN</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a> -&gt; <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a</li></ul></div><div id="interface"><h1>Documentation</h1><div class="top"><p class="src">module <a href="Data-List-PointedList.html">Data.List.PointedList</a></p></div><div class="top"><p class="src"><a id="v:next" class="def">next</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a <a href="src/Data-List-PointedList-Circular.html#next" class="link">Source</a> <a href="#v:next" class="selflink">#</a></p><div class="doc"><p>Move the focus to the next element in the list. If the last element is
   currently focused, loop to the first element.</p></div></div><div class="top"><p class="src"><a id="v:previous" class="def">previous</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a <a href="src/Data-List-PointedList-Circular.html#previous" class="link">Source</a> <a href="#v:previous" class="selflink">#</a></p><div class="doc"><p>Move the focus to the previous element in the list. If the first element is
   currently focused, loop to the last element.</p></div></div><div class="top"><p class="src"><a id="v:delete" class="def">delete</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybe.html#t:Maybe">Maybe</a> (<a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a) <a href="src/Data-List-PointedList-Circular.html#delete" class="link">Source</a> <a href="#v:delete" class="selflink">#</a></p><div class="doc"><p>An alias of <code><a href="Data-List-PointedList-Circular.html#v:deleteRight">deleteRight</a></code>.</p></div></div><div class="top"><p class="src"><a id="v:deleteLeft" class="def">deleteLeft</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybe.html#t:Maybe">Maybe</a> (<a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a) <a href="src/Data-List-PointedList-Circular.html#deleteLeft" class="link">Source</a> <a href="#v:deleteLeft" class="selflink">#</a></p><div class="doc"><p>Possibly delete the element at the focus, then move the element on the
   left to the focus. If no element is on the left, focus on the element to
   the right. If the deletion will cause the list to be empty, return
   <code>Nothing</code>.</p></div></div><div class="top"><p class="src"><a id="v:deleteRight" class="def">deleteRight</a> :: <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybe.html#t:Maybe">Maybe</a> (<a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a) <a href="src/Data-List-PointedList-Circular.html#deleteRight" class="link">Source</a> <a href="#v:deleteRight" class="selflink">#</a></p><div class="doc"><p>Possibly delete the element at the focus, then move the element on the
   right to the focus. If no element is on the right, focus on the element to
   the left. If the deletion will cause the list to be empty, return
   <code>Nothing</code>.</p></div></div><div class="top"><p class="src"><a id="v:moveN" class="def">moveN</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a> -&gt; <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a -&gt; <a href="Data-List-PointedList.html#t:PointedList">PointedList</a> a <a href="src/Data-List-PointedList-Circular.html#moveN" class="link">Source</a> <a href="#v:moveN" class="selflink">#</a></p><div class="doc"><p>Move</p></div></div></div></div><div id="footer"><p>Produced by <a href="http://www.haskell.org/haddock/">Haddock</a> version 2.17.2</p></div></body></html>