/usr/share/doc/libghc-parsers-doc/html/Text-Parser-LookAhead.html is in libghc-parsers-doc 0.10.3-1.
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 | <!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>Text.Parser.LookAhead</title><link href="ocean.css" rel="stylesheet" type="text/css" title="Ocean" /><script src="haddock-util.js" type="text/javascript"></script><script type="text/javascript">//<![CDATA[
window.onload = function () {pageLoad();setSynopsis("mini_Text-Parser-LookAhead.html");};
//]]>
</script></head><body><div id="package-header"><ul class="links" id="page-menu"><li><a href="src/Text-Parser-LookAhead.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">parsers-0.10.3: Parsing combinators</p></div><div id="content"><div id="module-header"><table class="info"><tr><th>Portability</th><td>non-portable</td></tr><tr><th>Stability</th><td>experimental</td></tr><tr><th>Maintainer</th><td>ekmett@gmail.com</td></tr><tr><th>Safe Haskell</th><td>Safe-Inferred</td></tr></table><p class="caption">Text.Parser.LookAhead</p></div><div id="table-of-contents"><p class="caption">Contents</p><ul><li><a href="#g:1">Parsing Combinators
</a></li></ul></div><div id="description"><p class="caption">Description</p><div class="doc"><p>Parsers that can <code><a href="Text-Parser-LookAhead.html#v:lookAhead">lookAhead</a></code>.
</p></div></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"><span class="keyword">class</span> <a href="Text-Parser-Combinators.html#t:Parsing">Parsing</a> m => <a href="#t:LookAheadParsing">LookAheadParsing</a> m <span class="keyword">where</span><ul class="subs"><li><a href="#v:lookAhead">lookAhead</a> :: m a -> m a</li></ul></li></ul></div><div id="interface"><h1 id="g:1">Parsing Combinators
</h1><div class="top"><p class="src"><span class="keyword">class</span> <a href="Text-Parser-Combinators.html#t:Parsing">Parsing</a> m => <a name="t:LookAheadParsing" class="def">LookAheadParsing</a> m <span class="keyword">where</span><a href="src/Text-Parser-LookAhead.html#LookAheadParsing" class="link">Source</a></p><div class="doc"><p>Additional functionality needed to describe parsers independent of input type.
</p></div><div class="subs methods"><p class="caption">Methods</p><p class="src"><a name="v:lookAhead" class="def">lookAhead</a> :: m a -> m a<a href="src/Text-Parser-LookAhead.html#lookAhead" class="link">Source</a></p><div class="doc"><p><code>lookAhead p</code> parses <code>p</code> without consuming any input.
</p></div></div><div class="subs instances"><p id="control.i:LookAheadParsing" class="caption collapser" onclick="toggleSection('i:LookAheadParsing')">Instances</p><div id="section.i:LookAheadParsing" class="show"><table><tr><td class="src"><a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Text-ParserCombinators-ReadP.html#t:ReadP">ReadP</a></td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Control-Monad.html#t:Monad">Monad</a> m) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-transformers-doc/html/Control-Monad-Trans-Identity.html#t:IdentityT">IdentityT</a> m)</td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Control-Monad.html#t:MonadPlus">MonadPlus</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Data-Monoid.html#t:Monoid">Monoid</a> w) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-transformers-doc/html/Control-Monad-Trans-Writer-Strict.html#t:WriterT">WriterT</a> w m)</td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Control-Monad.html#t:MonadPlus">MonadPlus</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Data-Monoid.html#t:Monoid">Monoid</a> w) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-transformers-doc/html/Control-Monad-Trans-Writer-Lazy.html#t:WriterT">WriterT</a> w m)</td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Control-Monad.html#t:MonadPlus">MonadPlus</a> m) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-transformers-doc/html/Control-Monad-Trans-State-Strict.html#t:StateT">StateT</a> s m)</td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Control-Monad.html#t:MonadPlus">MonadPlus</a> m) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-transformers-doc/html/Control-Monad-Trans-State-Lazy.html#t:StateT">StateT</a> s m)</td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Control-Monad.html#t:MonadPlus">MonadPlus</a> m) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-transformers-doc/html/Control-Monad-Trans-Reader.html#t:ReaderT">ReaderT</a> e m)</td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="/usr/share/doc/libghc-parsec3-doc/html/Text-Parsec-Prim.html#t:Stream">Stream</a> s m t, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Text-Show.html#t:Show">Show</a> t) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-parsec3-doc/html/Text-Parsec-Prim.html#t:ParsecT">ParsecT</a> s u m)</td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Control-Monad.html#t:MonadPlus">MonadPlus</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Data-Monoid.html#t:Monoid">Monoid</a> w) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-transformers-doc/html/Control-Monad-Trans-RWS-Strict.html#t:RWST">RWST</a> r w s m)</td><td class="doc empty"> </td></tr><tr><td class="src">(<a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Control-Monad.html#t:MonadPlus">MonadPlus</a> m, <a href="/usr/share/doc/ghc-doc/html/libraries/base-4.6.0.1/Data-Monoid.html#t:Monoid">Monoid</a> w) => <a href="Text-Parser-LookAhead.html#t:LookAheadParsing">LookAheadParsing</a> (<a href="/usr/share/doc/libghc-transformers-doc/html/Control-Monad-Trans-RWS-Lazy.html#t:RWST">RWST</a> r w s m)</td><td class="doc empty"> </td></tr></table></div></div></div></div></div><div id="footer"><p>Produced by <a href="http://www.haskell.org/haddock/">Haddock</a> version 2.13.2</p></div></body></html>
|