diff options
| author | 2022-09-19 20:45:38 -0700 | |
|---|---|---|
| committer | 2022-09-19 20:45:38 -0700 | |
| commit | fd38e3e39c2dcad7b22942528179279ab4eca277 (patch) | |
| tree | 04ddf27c593ab0bc9d19fc63e06564f6ded3f785 | |
| parent | Link to landing pages of other SRFIs. (diff) | |
Finalize.
Diffstat (limited to '')
| -rw-r--r-- | README.org | 2 | ||||
| -rw-r--r-- | index.html | 5 | ||||
| -rw-r--r-- | srfi-225.html | 10 |
3 files changed, 5 insertions, 12 deletions
@@ -8,7 +8,7 @@ keywords: [[https://srfi.schemers.org/?keywords=data-structure][Data Structure]] This repository hosts [[https://srfi.schemers.org/srfi-225/][SRFI 225]]: Dictionaries, a [[https://srfi.schemers.org/][Scheme Request for Implementation]]. -This SRFI is in /draft/ status. +This SRFI is in /final/ status. See also [[https://srfi.schemers.org/srfi-146/][SRFI 146: Mappings]] and [[https://srfi.schemers.org/srfi-167/][SRFI 167: Ordered Key Value Store]]. @@ -22,7 +22,7 @@ <h1>SRFI 225: Dictionaries</h1> <p class="authors">by John Cowan (spec) and Arvydas Silanskas (implementation)</p> <p class="based-on"></p> - <p class="status">status: <em>draft</em> (2021-06-26)</p> + <p class="status">status: <em>final</em> (2022-09-19)</p> <p class="keywords">keywords: <a href="https://srfi.schemers.org/?keywords=data-structure">Data Structure</a></p><span class="see-also">See also <a href="/srfi-146/">SRFI 146: Mappings</a> and <a href="/srfi-167/">SRFI 167: Ordered Key Value Store</a>.</span> <ul class="info"> @@ -78,5 +78,4 @@ value="srfi-225@srfi.schemers.org"></form></a></li></ul> <h2>Abstract</h2><p>The procedures of this SRFI allow callers to manipulate an object that maps keys to values without the caller needing to know exactly what the type of the object is. - However, what procedures can be called on the object is partly determined by whether it is pure. - Such an object is called a <em>dict(ionary)</em> in this SRFI.</p></body></html>
\ No newline at end of file + Such an object is called a <em>dictionary</em> or <em>dict</em> in this SRFI.</p></body></html>
\ No newline at end of file diff --git a/srfi-225.html b/srfi-225.html index adde069..9665e87 100644 --- a/srfi-225.html +++ b/srfi-225.html @@ -13,19 +13,16 @@ <h2 id="status">Status</h2> -<p>This SRFI is currently in <em>draft</em> status. Here is <a href="https://srfi.schemers.org/srfi-process.html">an explanation</a> of each status that a SRFI can hold. To provide input on this SRFI, please send email to <code><a href="mailto:srfi+minus+225+at+srfi+dotschemers+dot+org">srfi-225@<span class="antispam">nospam</span>srfi.schemers.org</a></code>. To subscribe to the list, follow <a href="https://srfi.schemers.org/srfi-list-subscribe.html">these instructions</a>. You can access previous messages via the mailing list <a href="https://srfi-email.schemers.org/srfi-225">archive</a>.</p> +<p>This SRFI is currently in <em>final</em> status. Here is <a href="https://srfi.schemers.org/srfi-process.html">an explanation</a> of each status that a SRFI can hold. To provide input on this SRFI, please send email to <code><a href="mailto:srfi+minus+225+at+srfi+dotschemers+dot+org">srfi-225@<span class="antispam">nospam</span>srfi.schemers.org</a></code>. To subscribe to the list, follow <a href="https://srfi.schemers.org/srfi-list-subscribe.html">these instructions</a>. You can access previous messages via the mailing list <a href="https://srfi-email.schemers.org/srfi-225">archive</a>.</p> <ul> <li>Received: 2021-06-26</li> - <li>60-day deadline: 2021-09-16</li> <li>Draft #1 published: 2021-07-18</li> <li>Draft #2 published: 2021-07-26</li> <li>Draft #3 published: 2021-08-07</li> <li>Draft #4 published: 2021-10-29</li> <li>Draft #5 published: 2021-11-13</li> <li>Draft #6 published: 2022-03-16</li> - <li>John Cowan's <a href="https://github.com/pre-srfi/dictionaries">personal - Git repo for this SRFI</a> for reference while the SRFI is in - <em>draft</em> status (<a href="https://htmlpreview.github.io/?https://github.com/johnwcowan/srfi-225/blob/master/srfi-225.html">preview</a>)</li> + <li>Finalized: 2022-09-19</li> </ul> <h2 id="abstract">Abstract</h2> @@ -33,9 +30,6 @@ <p>The procedures of this SRFI allow callers to manipulate an object that maps keys to values without the caller needing to know exactly what the type of the object is. Such an object is called a <em>dictionary</em> or <em>dict</em> in this SRFI. -<h2 id="issues">Issues</h2> - -None at present. <h2 id="rationale">Rationale</h2> |
