UNPKG

@ciao-lang/ts-ciao-interface

Version:

Simple Ciao interface for node.

70 lines 22.2 kB
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><meta name="theme-color" content="#273f79"/><link rel="stylesheet" href="lpdoc.css" type="text/css"/><script type="text/javascript" src="lpdoc.js"></script><title>Message printing primitives &mdash; The Ciao System v1.22</title></head><body><div class="lpdoc-page fixleftbar"><a href="#" id="sidebar-toggle-button" class="lpdoc-navbutton"><span id="sidebar-button-arrow">&#9776;</span></a><div id="sidebar" class="lpdoc-sidebar"><div style="height: 40px; margin-left: auto; margin-right: auto"><img src="ciao-logo_autofig.png" width=auto height=100%></div><div class="lpdoc-nav"><span class="lpdoc-on-right"><a class="lpdoc-navbutton" href="StdLibs.html">&#x2191;</a><a class="lpdoc-navbutton" href="terms_io.html">&#x2190;</a><a class="lpdoc-navbutton" href="runtime_control.html">&#x2192;</a><a class="lpdoc-navbutton" href="ciaosearch.html">&#x1F50D;</a></span><span><a href="ciaofulltoc.html">TOC</a></span></div><hr></hr><ul class="lpdoc-itemize-sectpath"><li><a href="ciao.html">The Ciao System</a> &raquo;<br/> </li><li><a href="StdLibs.html">PART VII - Standard libraries</a> &raquo;<br/> </li><li><a href=""><strong>Message printing primitives</strong></a></li></ul><hr></hr><em>ON THIS PAGE</em><ul><li><a href="#Usage and interface">Usage and interface</a></li><li><a href="#Documentation on exports">Documentation on exports</a></li><li><a href="#Documentation on internals">Documentation on internals</a></li><li><a href="#Documentation on imports">Documentation on imports</a></li></ul></div><div class="lpdoc-main"><div id=""><h1>Message printing primitives</h1><a class="lpdoc-idx-anchor" href="ciaosearch.html#messages_basic"></a> <strong>Author(s):</strong> <a class="lpdoc-idx-anchor" id="Daniel Cabeza" href="ciaosearch.html#Daniel Cabeza">Daniel Cabeza</a>, <a class="lpdoc-idx-anchor" id="Edison Mera" href="ciaosearch.html#Edison Mera">Edison Mera (improvements)</a>, <a class="lpdoc-idx-anchor" id="Jose F. Morales" href="ciaosearch.html#Jose F. Morales">Jose F. Morales</a>, <a class="lpdoc-idx-anchor" id="Manuel V. Hermenegildo" href="ciaosearch.html#Manuel V. Hermenegildo">Manuel V. Hermenegildo</a>.<p> This module provides predicates for printing in a unified way informational messages. It is designed to be small and do not have (strict) dependencies with other larger printing and formatting libraries in the system.<br/><div id="Usage and interface"><h2>Usage and interface</h2><div class="lpdoc-cartouche"><ul><li><strong>Library usage:</strong><br/><tt>:- use_module(engine(messages_basic)).</tt><li><strong>Exports:</strong><br/><ul class="lpdoc-itemize-minus"><li><em>Predicates:</em><br/><a class="lpdoc-idx-anchor" id="0" href="#message/2"><tt>message/2</tt></a>, <a class="lpdoc-idx-anchor" id="1" href="#message_lns/4"><tt>message_lns/4</tt></a>, <a class="lpdoc-idx-anchor" id="2" href="#messages/1"><tt>messages/1</tt></a>, <a class="lpdoc-idx-anchor" id="3" href="#message_type_visible/1"><tt>message_type_visible/1</tt></a>, <a class="lpdoc-idx-anchor" id="4" href="#lformat/1"><tt>lformat/1</tt></a>, <a class="lpdoc-idx-anchor" id="5" href="#display_list/1"><tt>display_list/1</tt></a>, <a class="lpdoc-idx-anchor" id="6" href="#add_lines/4"><tt>add_lines/4</tt></a>. <li><em>Regular Types:</em><br/><a class="lpdoc-idx-anchor" id="7" href="#message_info/1"><tt>message_info/1</tt></a>, <a class="lpdoc-idx-anchor" id="8" href="#message_type/1"><tt>message_type/1</tt></a>. </ul></ul></div></div><div id="Documentation on exports"><h2>Documentation on exports</h2><div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="message/2" href="ciaosearch.html#message/2">message/2</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>message(Type,Message)</tt> </span><p>Output to standard error <span class="lpdoc-var">Message</span>, which is of type <span class="lpdoc-var">Type</span>. The <tt>quiet</tt> <a class="lpdoc-idx-anchor" id="9" href="ciaosearch.html#prolog flag"><em>prolog flag</em></a> (see <a href="runtime_control.html">Runtime system control and flags</a>) controls which messages are actually output, depending on its type. Also, for <tt>error</tt>, <tt>warning</tt>, and <tt>note</tt> messages, a prefix is output which denotes the severity of the message.</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="10" href="#message_type/1"><tt>messages_basic:message_type/1</tt></a>)</span><span><span class="lpdoc-var">Type</span> is one of the accepted message types. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="25" href="#lformat_text/1"><tt>messages_basic:lformat_text/1</tt></a>)</span><span><span class="lpdoc-var">Message</span> is an item or a list of items from the following:<p><dl> <p><dt><tt>$$(String)</tt><dd> <tt>String</tt> is a string, which is output with <a class="lpdoc-idx-anchor" id="11" href="stream_utils.html#write_string/1"><tt>write_string/1</tt></a>.<p><dt><tt>&apos;</tt><tt>&apos;</tt><tt>(Term)</tt><dd> <tt>Term</tt> is output quoted. If the module <a class="lpdoc-idx-anchor" id="12" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="13" href="write.html#writeq/1"><tt>writeq/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="14" href="io_basic.html#displayq/1"><tt>displayq/1</tt></a>.<p><dt><tt>~~(Term)</tt><dd> <tt>Term</tt> is output unquoted. If the module <a class="lpdoc-idx-anchor" id="15" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="16" href="write.html#write/1"><tt>write/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="17" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p><dt><tt>&apos;</tt><tt>&apos;</tt><tt>({Term})</tt><dd> <tt>Term</tt> is output quoted. If the module <a class="lpdoc-idx-anchor" id="18" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="19" href="write.html#printq/1"><tt>printq/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="20" href="io_basic.html#displayq/1"><tt>displayq/1</tt></a>. <dt><tt>{Term}</tt><dd> <tt>Term</tt> is output unquoted. If the module <a class="lpdoc-idx-anchor" id="21" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="22" href="write.html#print/1"><tt>print/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="23" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p><dt><tt>[](Term)</tt><dd> <tt>Term</tt> is recursively output as a message, can be an item or a list of items from this list.<p><dt><tt>Term</tt><dd> Any other term is output with <a class="lpdoc-idx-anchor" id="24" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p></dl> </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="message_lns/4" href="ciaosearch.html#message_lns/4">message_lns/4</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>message_lns(Type,L0,L1,Message)</tt> </span><p>Output to standard error <span class="lpdoc-var">Message</span>, which is of type <span class="lpdoc-var">Type</span>, and occurs between lines <span class="lpdoc-var">L0</span> and <span class="lpdoc-var">L1</span>. This is the same as <a class="lpdoc-idx-anchor" id="26" href="#message/2"><tt>message/2</tt></a>, but printing the lines where the message occurs in a unified way (this is useful because automatic tools such as the emacs mode know how to parse them).</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="27" href="#message_type/1"><tt>messages_basic:message_type/1</tt></a>)</span><span><span class="lpdoc-var">Type</span> is one of the accepted message types. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="28" href="basic_props.html#nnegint/1"><tt>basic_props:nnegint/1</tt></a>)</span><span><span class="lpdoc-var">L0</span> is a non-negative integer. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="29" href="basic_props.html#nnegint/1"><tt>basic_props:nnegint/1</tt></a>)</span><span><span class="lpdoc-var">L1</span> is a non-negative integer. </span><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="44" href="#lformat_text/1"><tt>messages_basic:lformat_text/1</tt></a>)</span><span><span class="lpdoc-var">Message</span> is an item or a list of items from the following:<p><dl> <p><dt><tt>$$(String)</tt><dd> <tt>String</tt> is a string, which is output with <a class="lpdoc-idx-anchor" id="30" href="stream_utils.html#write_string/1"><tt>write_string/1</tt></a>.<p><dt><tt>&apos;</tt><tt>&apos;</tt><tt>(Term)</tt><dd> <tt>Term</tt> is output quoted. If the module <a class="lpdoc-idx-anchor" id="31" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="32" href="write.html#writeq/1"><tt>writeq/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="33" href="io_basic.html#displayq/1"><tt>displayq/1</tt></a>.<p><dt><tt>~~(Term)</tt><dd> <tt>Term</tt> is output unquoted. If the module <a class="lpdoc-idx-anchor" id="34" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="35" href="write.html#write/1"><tt>write/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="36" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p><dt><tt>&apos;</tt><tt>&apos;</tt><tt>({Term})</tt><dd> <tt>Term</tt> is output quoted. If the module <a class="lpdoc-idx-anchor" id="37" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="38" href="write.html#printq/1"><tt>printq/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="39" href="io_basic.html#displayq/1"><tt>displayq/1</tt></a>. <dt><tt>{Term}</tt><dd> <tt>Term</tt> is output unquoted. If the module <a class="lpdoc-idx-anchor" id="40" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="41" href="write.html#print/1"><tt>print/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="42" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p><dt><tt>[](Term)</tt><dd> <tt>Term</tt> is recursively output as a message, can be an item or a list of items from this list.<p><dt><tt>Term</tt><dd> Any other term is output with <a class="lpdoc-idx-anchor" id="43" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p></dl> </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="messages/1" href="ciaosearch.html#messages/1">messages/1</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>messages(Messages)</tt> </span><p>Print each element in <span class="lpdoc-var">Messages</span> using <a class="lpdoc-idx-anchor" id="45" href="#message/2"><tt>message/2</tt></a> or <a class="lpdoc-idx-anchor" id="46" href="#message_lns/4"><tt>message_lns/4</tt></a> predicates.</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="47" href="basic_props.html#list/2"><tt>basic_props:list/2</tt></a>)</span><span><span class="lpdoc-var">Messages</span> is a list of <span class="lpdoc-var">message_info</span>s. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="message_type_visible/1" href="ciaosearch.html#message_type_visible/1">message_type_visible/1</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>message_type_visible(Type)</tt> </span><p>Succeeds if message type <span class="lpdoc-var">Type</span> is visible according to the current value of the <tt>quiet</tt> <a class="lpdoc-idx-anchor" id="48" href="ciaosearch.html#prolog flag"><em>prolog flag</em></a></p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="49" href="#message_type/1"><tt>messages_basic:message_type/1</tt></a>)</span><span><span class="lpdoc-var">Type</span> is one of the accepted message types. </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="lformat/1" href="ciaosearch.html#lformat/1">lformat/1</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>lformat(T)</tt> </span><p>Output a formatted text <span class="lpdoc-var">T</span>. See <a class="lpdoc-idx-anchor" id="50" href="#lformat_text/1"><tt>lformat_text/1</tt></a> for a description of the text formatting.</p><ul class="lpdoc-itemize-minus"><li><em>The following properties should hold at call time:</em><br/><span class="lpdoc-on-right"> (<a class="lpdoc-idx-anchor" id="65" href="#lformat_text/1"><tt>messages_basic:lformat_text/1</tt></a>)</span><span><span class="lpdoc-var">T</span> is an item or a list of items from the following:<p><dl> <p><dt><tt>$$(String)</tt><dd> <tt>String</tt> is a string, which is output with <a class="lpdoc-idx-anchor" id="51" href="stream_utils.html#write_string/1"><tt>write_string/1</tt></a>.<p><dt><tt>&apos;</tt><tt>&apos;</tt><tt>(Term)</tt><dd> <tt>Term</tt> is output quoted. If the module <a class="lpdoc-idx-anchor" id="52" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="53" href="write.html#writeq/1"><tt>writeq/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="54" href="io_basic.html#displayq/1"><tt>displayq/1</tt></a>.<p><dt><tt>~~(Term)</tt><dd> <tt>Term</tt> is output unquoted. If the module <a class="lpdoc-idx-anchor" id="55" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="56" href="write.html#write/1"><tt>write/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="57" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p><dt><tt>&apos;</tt><tt>&apos;</tt><tt>({Term})</tt><dd> <tt>Term</tt> is output quoted. If the module <a class="lpdoc-idx-anchor" id="58" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="59" href="write.html#printq/1"><tt>printq/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="60" href="io_basic.html#displayq/1"><tt>displayq/1</tt></a>. <dt><tt>{Term}</tt><dd> <tt>Term</tt> is output unquoted. If the module <a class="lpdoc-idx-anchor" id="61" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="62" href="write.html#print/1"><tt>print/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="63" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p><dt><tt>[](Term)</tt><dd> <tt>Term</tt> is recursively output as a message, can be an item or a list of items from this list.<p><dt><tt>Term</tt><dd> Any other term is output with <a class="lpdoc-idx-anchor" id="64" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p></dl> </span> </ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="display_list/1" href="ciaosearch.html#display_list/1">display_list/1</a></div><div class="lpdoc-deftext"><span class="lpdoc-usage-decl"><tt>display_list(List)</tt> </span><p>Outputs <span class="lpdoc-var">List</span>. If <span class="lpdoc-var">List</span> is a list, do <a class="lpdoc-idx-anchor" id="66" href="io_basic.html#display/1"><tt>display/1</tt></a> on each of its elements, else do <a class="lpdoc-idx-anchor" id="67" href="io_basic.html#display/1"><tt>display/1</tt></a> on <span class="lpdoc-var">List</span>.</div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">REGTYPE</span><a class="lpdoc-idx-anchor" id="message_info/1" href="ciaosearch.html#message_info/1">message_info/1</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><p>The type of the elements to be printed using the <a class="lpdoc-idx-anchor" id="68" href="#messages/1"><tt>messages/1</tt></a> predicate. Defined as <pre class="lpdoc-codeblock">message_info(message_lns(Source,Ln0,Ln1,Type,Text)) :- atm(Source), nnegint(Ln0), nnegint(Ln1), message_type(Type), lformat_text(Text). message_info(message(Type,Text)) :- atm(Type), lformat_text(Text). message_info(error(Text)) :- lformat_text(Text). message_info(warning(Text)) :- lformat_text(Text). message_info(note(Text)) :- lformat_text(Text). message_info(message(Text)) :- lformat_text(Text). message_info(debug(Text)) :- lformat_text(Text). </pre>.</p><ul class="lpdoc-itemize-minus"></ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">REGTYPE</span><a class="lpdoc-idx-anchor" id="message_type/1" href="ciaosearch.html#message_type/1">message_type/1</a></div><div class="lpdoc-deftext"><span class="lpdoc-usage-decl"><tt>message_type(M)</tt> </span><p><pre class="lpdoc-codeblock">message_type(error). message_type(error0). message_type(warning). message_type(note). message_type(user). message_type(inform). message_type(debug). message_type(passed). message_type(failed). message_type(aborted). message_type(testing). </pre><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>message_type(M)</tt> </span><p><span class="lpdoc-var">M</span> is one of the accepted message types.</p><ul class="lpdoc-itemize-minus"></ul></div></div><p> <div><div class="lpdoc-defname"><span class="lpdoc-predtag">PREDICATE</span><a class="lpdoc-idx-anchor" id="add_lines/4" href="ciaosearch.html#add_lines/4">add_lines/4</a></div><div class="lpdoc-deftext">No further documentation available for this predicate.</div></div><p> </div><div id="Documentation on internals"><h2>Documentation on internals</h2><div><div class="lpdoc-defname"><span class="lpdoc-predtag">REGTYPE</span><a class="lpdoc-idx-anchor" id="lformat_text/1" href="ciaosearch.html#lformat_text/1">lformat_text/1</a></div><div class="lpdoc-deftext"><p><span class="lpdoc-usage-header">Usage:</span><span class="lpdoc-usage-decl"><tt>lformat_text(Message)</tt> </span><p><span class="lpdoc-var">Message</span> is an item or a list of items from the following:<p><dl> <p><dt><tt>$$(String)</tt><dd> <tt>String</tt> is a string, which is output with <a class="lpdoc-idx-anchor" id="69" href="stream_utils.html#write_string/1"><tt>write_string/1</tt></a>.<p><dt><tt>&apos;</tt><tt>&apos;</tt><tt>(Term)</tt><dd> <tt>Term</tt> is output quoted. If the module <a class="lpdoc-idx-anchor" id="70" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="71" href="write.html#writeq/1"><tt>writeq/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="72" href="io_basic.html#displayq/1"><tt>displayq/1</tt></a>.<p><dt><tt>~~(Term)</tt><dd> <tt>Term</tt> is output unquoted. If the module <a class="lpdoc-idx-anchor" id="73" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="74" href="write.html#write/1"><tt>write/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="75" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p><dt><tt>&apos;</tt><tt>&apos;</tt><tt>({Term})</tt><dd> <tt>Term</tt> is output quoted. If the module <a class="lpdoc-idx-anchor" id="76" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="77" href="write.html#printq/1"><tt>printq/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="78" href="io_basic.html#displayq/1"><tt>displayq/1</tt></a>. <dt><tt>{Term}</tt><dd> <tt>Term</tt> is output unquoted. If the module <a class="lpdoc-idx-anchor" id="79" href="write.html"><tt>write</tt></a> is loaded, the term is output with <a class="lpdoc-idx-anchor" id="80" href="write.html#print/1"><tt>print/1</tt></a>, else with <a class="lpdoc-idx-anchor" id="81" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p><dt><tt>[](Term)</tt><dd> <tt>Term</tt> is recursively output as a message, can be an item or a list of items from this list.<p><dt><tt>Term</tt><dd> Any other term is output with <a class="lpdoc-idx-anchor" id="82" href="io_basic.html#display/1"><tt>display/1</tt></a>.<p></dl> </p><ul class="lpdoc-itemize-minus"></ul></div></div><p> </div><div id="Documentation on imports"><h2>Documentation on imports</h2>This module has the following direct dependencies:<ul class="lpdoc-itemize-minus"><li><em>System library modules:</em><br/><a class="lpdoc-idx-anchor" id="83" href="ciaosearch.html#native_props"><tt>native_props</tt></a>, <a class="lpdoc-idx-anchor" id="84" href="stream_utils.html"><tt>stream_utils</tt></a>. <li><em>Packages:</em><br/><a class="lpdoc-idx-anchor" id="85" href="ciaosearch.html#prelude"><tt>prelude</tt></a>, <a class="lpdoc-idx-anchor" id="86" href="ciaosearch.html#initial"><tt>initial</tt></a>, <a class="lpdoc-idx-anchor" id="87" href="condcomp_doc.html"><tt>condcomp</tt></a>, <a class="lpdoc-idx-anchor" id="88" href="assertions_doc.html"><tt>assertions</tt></a>, <a class="lpdoc-idx-anchor" id="89" href="ciaosearch.html#assertions/assertions_basic"><tt>assertions/assertions_basic</tt></a>, <a class="lpdoc-idx-anchor" id="90" href="ciaosearch.html#nativeprops"><tt>nativeprops</tt></a>, <a class="lpdoc-idx-anchor" id="91" href="ciaosearch.html#nortchecks"><tt>nortchecks</tt></a>. </ul></div></div><div class="lpdoc-footer">Generated with LPdoc using Ciao</div></div><div class="lpdoc-clearer"></div></div></body></html>