forked from OCamlPro/alt-ergo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 3423011 🚀
- Loading branch information
Showing
54 changed files
with
738 additions
and
347 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
next/API/alt-ergo-lib/AltErgoLib/Domains/Make/Ephemeral/Canon/Entry/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Entry (alt-ergo-lib.AltErgoLib.Domains.Make.Ephemeral.Canon.Entry)</title><meta charset="utf-8"/><link rel="stylesheet" href="../../../../../../../odoc.support/odoc.css"/><meta name="generator" content="odoc 2.4.2"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../../../../../../odoc.support/highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body class="odoc"><nav class="odoc-nav"><a href="../index.html">Up</a> – <a href="../../../../../../index.html">alt-ergo-lib</a> » <a href="../../../../../index.html">AltErgoLib</a> » <a href="../../../../index.html">Domains</a> » <a href="../../../index.html">Make</a> » <a href="../../index.html">Ephemeral</a> » <a href="../index.html">Canon</a> » Entry</nav><header class="odoc-preamble"><h1>Module <code><span>Canon.Entry</span></code></h1></header><div class="odoc-content"><div class="odoc-spec"><div class="spec type anchored" id="type-t"><a href="#type-t" class="anchor"></a><code><span><span class="keyword">type</span> t</span></code></div><div class="spec-doc"><p>A mutable entry associated with a given key. Can be used to access and update the associated domain imperatively. A single (physical) entry is associated with a given key.</p></div></div><div class="odoc-spec"><div class="spec type anchored" id="type-domain"><a href="#type-domain" class="anchor"></a><code><span><span class="keyword">type</span> domain</span><span> = <a href="../../../argument-2-D/index.html#type-t">D.t</a></span></code></div><div class="spec-doc"><p>The type of domains associated with an entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-domain"><a href="#val-domain" class="anchor"></a><code><span><span class="keyword">val</span> domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <a href="#type-domain">domain</a></span></code></div><div class="spec-doc"><p>Return the domain associated with this entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-set_domain"><a href="#val-set_domain" class="anchor"></a><code><span><span class="keyword">val</span> set_domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <span><a href="#type-domain">domain</a> <span class="arrow">-></span></span> unit</span></code></div><div class="spec-doc"><p><code>set_domain e d</code> sets the domain of entry <code>e</code> to <code>d</code>. This overwrites any pre-existing domain associated with <code>e</code>.</p><p><b>Note</b>: if you need to tighten an existing domain, this must be done explicitely by accessing the current domain through <code>domain</code> before calling <code>set_domain</code>. See <code>MakEntryNotation</code>.</p></div></div></div></body></html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Entry (alt-ergo-lib.AltErgoLib.Domains.Make.Ephemeral.Canon.Entry)</title><meta charset="utf-8"/><link rel="stylesheet" href="../../../../../../../odoc.support/odoc.css"/><meta name="generator" content="odoc 2.4.2"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../../../../../../odoc.support/highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body class="odoc"><nav class="odoc-nav"><a href="../index.html">Up</a> – <a href="../../../../../../index.html">alt-ergo-lib</a> » <a href="../../../../../index.html">AltErgoLib</a> » <a href="../../../../index.html">Domains</a> » <a href="../../../index.html">Make</a> » <a href="../../index.html">Ephemeral</a> » <a href="../index.html">Canon</a> » Entry</nav><header class="odoc-preamble"><h1>Module <code><span>Canon.Entry</span></code></h1></header><div class="odoc-content"><div class="odoc-spec"><div class="spec type anchored" id="type-t"><a href="#type-t" class="anchor"></a><code><span><span class="keyword">type</span> t</span></code></div><div class="spec-doc"><p>A mutable entry associated with a given key. Can be used to access and update the associated domain imperatively. A single (physical) entry is associated with a given key.</p></div></div><div class="odoc-spec"><div class="spec type anchored" id="type-domain"><a href="#type-domain" class="anchor"></a><code><span><span class="keyword">type</span> domain</span><span> = <a href="../../../argument-2-D/index.html#type-t">D.t</a></span></code></div><div class="spec-doc"><p>The type of domains associated with an entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-domain"><a href="#val-domain" class="anchor"></a><code><span><span class="keyword">val</span> domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <a href="#type-domain">domain</a></span></code></div><div class="spec-doc"><p>Return the domain associated with this entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-set_domain"><a href="#val-set_domain" class="anchor"></a><code><span><span class="keyword">val</span> set_domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <span><a href="#type-domain">domain</a> <span class="arrow">-></span></span> unit</span></code></div><div class="spec-doc"><p><code>set_domain e d</code> sets the domain of entry <code>e</code> to <code>d</code>. This overwrites any pre-existing domain associated with <code>e</code>.</p><p><b>Note</b>: the caller is responsible for ensuring that the domain is a subset of the possible domains for the entry (e.g. due to type constraints). The recommended way to do so is by first intersecting with the existing <code>domain</code>. See also the <code>EntryNotation</code> functor which does this for you.</p></div></div></div></body></html> |
2 changes: 1 addition & 1 deletion
2
next/API/alt-ergo-lib/AltErgoLib/Domains/Make/Ephemeral/Entry/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Entry (alt-ergo-lib.AltErgoLib.Domains.Make.Ephemeral.Entry)</title><meta charset="utf-8"/><link rel="stylesheet" href="../../../../../../odoc.support/odoc.css"/><meta name="generator" content="odoc 2.4.2"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../../../../../odoc.support/highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body class="odoc"><nav class="odoc-nav"><a href="../index.html">Up</a> – <a href="../../../../../index.html">alt-ergo-lib</a> » <a href="../../../../index.html">AltErgoLib</a> » <a href="../../../index.html">Domains</a> » <a href="../../index.html">Make</a> » <a href="../index.html">Ephemeral</a> » Entry</nav><header class="odoc-preamble"><h1>Module <code><span>Ephemeral.Entry</span></code></h1></header><div class="odoc-content"><div class="odoc-spec"><div class="spec type anchored" id="type-t"><a href="#type-t" class="anchor"></a><code><span><span class="keyword">type</span> t</span></code></div><div class="spec-doc"><p>A mutable entry associated with a given key. Can be used to access and update the associated domain imperatively. A single (physical) entry is associated with a given key.</p></div></div><div class="odoc-spec"><div class="spec type anchored" id="type-domain"><a href="#type-domain" class="anchor"></a><code><span><span class="keyword">type</span> domain</span><span> = <a href="../../argument-2-D/index.html#type-t">D.t</a></span></code></div><div class="spec-doc"><p>The type of domains associated with an entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-domain"><a href="#val-domain" class="anchor"></a><code><span><span class="keyword">val</span> domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <a href="#type-domain">domain</a></span></code></div><div class="spec-doc"><p>Return the domain associated with this entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-set_domain"><a href="#val-set_domain" class="anchor"></a><code><span><span class="keyword">val</span> set_domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <span><a href="#type-domain">domain</a> <span class="arrow">-></span></span> unit</span></code></div><div class="spec-doc"><p><code>set_domain e d</code> sets the domain of entry <code>e</code> to <code>d</code>. This overwrites any pre-existing domain associated with <code>e</code>.</p><p><b>Note</b>: if you need to tighten an existing domain, this must be done explicitely by accessing the current domain through <code>domain</code> before calling <code>set_domain</code>. See <code>MakEntryNotation</code>.</p></div></div></div></body></html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Entry (alt-ergo-lib.AltErgoLib.Domains.Make.Ephemeral.Entry)</title><meta charset="utf-8"/><link rel="stylesheet" href="../../../../../../odoc.support/odoc.css"/><meta name="generator" content="odoc 2.4.2"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../../../../../odoc.support/highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body class="odoc"><nav class="odoc-nav"><a href="../index.html">Up</a> – <a href="../../../../../index.html">alt-ergo-lib</a> » <a href="../../../../index.html">AltErgoLib</a> » <a href="../../../index.html">Domains</a> » <a href="../../index.html">Make</a> » <a href="../index.html">Ephemeral</a> » Entry</nav><header class="odoc-preamble"><h1>Module <code><span>Ephemeral.Entry</span></code></h1></header><div class="odoc-content"><div class="odoc-spec"><div class="spec type anchored" id="type-t"><a href="#type-t" class="anchor"></a><code><span><span class="keyword">type</span> t</span></code></div><div class="spec-doc"><p>A mutable entry associated with a given key. Can be used to access and update the associated domain imperatively. A single (physical) entry is associated with a given key.</p></div></div><div class="odoc-spec"><div class="spec type anchored" id="type-domain"><a href="#type-domain" class="anchor"></a><code><span><span class="keyword">type</span> domain</span><span> = <a href="../../argument-2-D/index.html#type-t">D.t</a></span></code></div><div class="spec-doc"><p>The type of domains associated with an entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-domain"><a href="#val-domain" class="anchor"></a><code><span><span class="keyword">val</span> domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <a href="#type-domain">domain</a></span></code></div><div class="spec-doc"><p>Return the domain associated with this entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-set_domain"><a href="#val-set_domain" class="anchor"></a><code><span><span class="keyword">val</span> set_domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <span><a href="#type-domain">domain</a> <span class="arrow">-></span></span> unit</span></code></div><div class="spec-doc"><p><code>set_domain e d</code> sets the domain of entry <code>e</code> to <code>d</code>. This overwrites any pre-existing domain associated with <code>e</code>.</p><p><b>Note</b>: the caller is responsible for ensuring that the domain is a subset of the possible domains for the entry (e.g. due to type constraints). The recommended way to do so is by first intersecting with the existing <code>domain</code>. See also the <code>EntryNotation</code> functor which does this for you.</p></div></div></div></body></html> |
2 changes: 1 addition & 1 deletion
2
.../API/alt-ergo-lib/AltErgoLib/Domains_intf/module-type-EphemeralDomainMap/Entry/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Entry (alt-ergo-lib.AltErgoLib.Domains_intf.EphemeralDomainMap.Entry)</title><meta charset="utf-8"/><link rel="stylesheet" href="../../../../../odoc.support/odoc.css"/><meta name="generator" content="odoc 2.4.2"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../../../../odoc.support/highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body class="odoc"><nav class="odoc-nav"><a href="../index.html">Up</a> – <a href="../../../../index.html">alt-ergo-lib</a> » <a href="../../../index.html">AltErgoLib</a> » <a href="../../index.html">Domains_intf</a> » <a href="../index.html">EphemeralDomainMap</a> » Entry</nav><header class="odoc-preamble"><h1>Module <code><span>EphemeralDomainMap.Entry</span></code></h1></header><div class="odoc-content"><div class="odoc-spec"><div class="spec type anchored" id="type-t"><a href="#type-t" class="anchor"></a><code><span><span class="keyword">type</span> t</span></code></div><div class="spec-doc"><p>A mutable entry associated with a given key. Can be used to access and update the associated domain imperatively. A single (physical) entry is associated with a given key.</p></div></div><div class="odoc-spec"><div class="spec type anchored" id="type-domain"><a href="#type-domain" class="anchor"></a><code><span><span class="keyword">type</span> domain</span></code></div><div class="spec-doc"><p>The type of domains associated with an entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-domain"><a href="#val-domain" class="anchor"></a><code><span><span class="keyword">val</span> domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <a href="#type-domain">domain</a></span></code></div><div class="spec-doc"><p>Return the domain associated with this entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-set_domain"><a href="#val-set_domain" class="anchor"></a><code><span><span class="keyword">val</span> set_domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <span><a href="#type-domain">domain</a> <span class="arrow">-></span></span> unit</span></code></div><div class="spec-doc"><p><code>set_domain e d</code> sets the domain of entry <code>e</code> to <code>d</code>. This overwrites any pre-existing domain associated with <code>e</code>.</p><p><b>Note</b>: if you need to tighten an existing domain, this must be done explicitely by accessing the current domain through <code>domain</code> before calling <code>set_domain</code>. See <code>MakEntryNotation</code>.</p></div></div></div></body></html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Entry (alt-ergo-lib.AltErgoLib.Domains_intf.EphemeralDomainMap.Entry)</title><meta charset="utf-8"/><link rel="stylesheet" href="../../../../../odoc.support/odoc.css"/><meta name="generator" content="odoc 2.4.2"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../../../../odoc.support/highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body class="odoc"><nav class="odoc-nav"><a href="../index.html">Up</a> – <a href="../../../../index.html">alt-ergo-lib</a> » <a href="../../../index.html">AltErgoLib</a> » <a href="../../index.html">Domains_intf</a> » <a href="../index.html">EphemeralDomainMap</a> » Entry</nav><header class="odoc-preamble"><h1>Module <code><span>EphemeralDomainMap.Entry</span></code></h1></header><div class="odoc-content"><div class="odoc-spec"><div class="spec type anchored" id="type-t"><a href="#type-t" class="anchor"></a><code><span><span class="keyword">type</span> t</span></code></div><div class="spec-doc"><p>A mutable entry associated with a given key. Can be used to access and update the associated domain imperatively. A single (physical) entry is associated with a given key.</p></div></div><div class="odoc-spec"><div class="spec type anchored" id="type-domain"><a href="#type-domain" class="anchor"></a><code><span><span class="keyword">type</span> domain</span></code></div><div class="spec-doc"><p>The type of domains associated with an entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-domain"><a href="#val-domain" class="anchor"></a><code><span><span class="keyword">val</span> domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <a href="#type-domain">domain</a></span></code></div><div class="spec-doc"><p>Return the domain associated with this entry.</p></div></div><div class="odoc-spec"><div class="spec value anchored" id="val-set_domain"><a href="#val-set_domain" class="anchor"></a><code><span><span class="keyword">val</span> set_domain : <span><a href="#type-t">t</a> <span class="arrow">-></span></span> <span><a href="#type-domain">domain</a> <span class="arrow">-></span></span> unit</span></code></div><div class="spec-doc"><p><code>set_domain e d</code> sets the domain of entry <code>e</code> to <code>d</code>. This overwrites any pre-existing domain associated with <code>e</code>.</p><p><b>Note</b>: the caller is responsible for ensuring that the domain is a subset of the possible domains for the entry (e.g. due to type constraints). The recommended way to do so is by first intersecting with the existing <code>domain</code>. See also the <a href="../../module-type-EntryNotation/index.html"><code>EntryNotation</code></a> functor which does this for you.</p></div></div></div></body></html> |
Oops, something went wrong.