summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arthur A. Gleckler 2021-06-26 23:17:13 -0700
committerGravatar Arthur A. Gleckler 2021-07-18 20:23:06 -0700
commiteddb5ea9684344866e47b9c3fb1cdc5daef068cd (patch)
tree0d62a167e7ac9e0d7434668b0ccad4427c7aecb6
parentIgnore trailing whitespace. (diff)
Publish first draft.draft-1
Diffstat (limited to '')
-rw-r--r--README.org22
-rw-r--r--index.html82
-rw-r--r--srfi-225.html10
3 files changed, 114 insertions, 0 deletions
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..21c62bf
--- /dev/null
+++ b/README.org
@@ -0,0 +1,22 @@
+* SRFI 225: Integer Mappings
+
+** by John Cowan (spec) and Arvydas Silanskas (implementation)
+
+
+
+keywords: [[https://srfi.schemers.org/?keywords=data-structure][Data Structure]]
+
+This repository hosts [[https://srfi.schemers.org/srfi-225/][SRFI 225]]: Integer Mappings, a [[https://srfi.schemers.org/][Scheme Request for Implementation]].
+
+This SRFI is in /draft/ 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]].
+
+The full documentation for this SRFI can be found in the [[https://srfi.schemers.org/srfi-225/srfi-225.html][SRFI Document]].
+
+If you'd like to participate in the discussion of this SRFI, or report issues with it, please [[https://srfi.schemers.org/srfi-225/][join the SRFI-225 mailing list]] and send your message there.
+
+Thank you.
+
+
+[[mailto:srfi-editors@srfi.schemers.org][The SRFI Editors]]
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..13c6ae0
--- /dev/null
+++ b/index.html
@@ -0,0 +1,82 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Integer Mappings</title>
+ <link href="/admin.css" rel="stylesheet">
+ <link href="/list.css" rel="stylesheet">
+ <link href="/favicon.png" rel="icon" sizes="192x192" type="image/png">
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
+ });
+ </script>
+ <script crossorigin="anonymous" integrity=
+ "sha384-Ra6zh6uYMmH5ydwCqqMoykyf1T/+ZcnOQfFPhDrp2kI4OIxadnhsvvA2vv9A7xYv" src=
+ "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"
+ type="text/javascript"></script>
+ </head>
+
+ <body>
+ <h1>SRFI 225: Integer Mappings</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="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">
+ <li><a href="srfi-225.html">The SRFI Document</a></li>
+ <li><a href="https://srfi-email.schemers.org/srfi-225/">Discussion Archive</a></li>
+ <li><a href="https://github.com/scheme-requests-for-implementation/srfi-225">Git repo (on Github)</a></li>
+ <li>
+ <a href="mailto:srfi-225@srfi.schemers.org">srfi-225@<span class="antispam">nospam</span>srfi.schemers.org (subscribers only)</a></li>
+ <li>
+ <span class="firefox-column-workaround">
+ <form method="POST" action="https://www.simplelists.com/subscribe.php">
+ <div class="title">Subscribe to srfi-225 mailing list</div>
+ <input name="email"
+ placeholder="email address"
+ tabindex="1"
+ type="email" >
+ <input name="name"
+ placeholder="full name"
+ tabindex="2"
+ type="text" >
+ <p>
+ <input id="sub-digest"
+ name="digest"
+ tabindex="3"
+ type="checkbox"
+ value="digest" >
+ <label for="sub-digest">daily digest?</label></p>
+ <input class="submit"
+ name="submit"
+ tabindex="4"
+ type="submit"
+ value="Subscribe to srfi-225" >
+ <input type="hidden" name="action" value="subscribe">
+ <input type="hidden" name="list" value="srfi-225@srfi.schemers.org"></form></a></li>
+ <li>
+ <span class="firefox-column-workaround">
+ <form method="POST" action="https://www.simplelists.com/subscribe.php">
+ <p class="title">Unsubscribe from srfi-225 mailing list</p>
+ <input name="email"
+ placeholder="email address"
+ tabindex="5"
+ type="email" >
+ <input class="submit"
+ name="submit"
+ tabindex="6"
+ type="submit"
+ value="Unsubscribe from srfi-225" >
+ <input name="action"
+ type="hidden"
+ value="unsubscribe" >
+ <input name="list"
+ type="hidden"
+ 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. Such an object is called a <em>dictionary</em> in this SRFI.</p></body></html> \ No newline at end of file
diff --git a/srfi-225.html b/srfi-225.html
index 5f2703c..4dc4d22 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -13,6 +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>
+<ul>
+ <li>Received: 2021-06-26</li>
+ <li>60-day deadline: 2021-09-16</li>
+ <li>Draft #1 published: 2021-07-18</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/pre-srfi/dictionaries/blob/master/srfi-225.html">preview</a>)</li>
+</ul>
+
<h2 id="abstract">Abstract</h2>
The procedures of this SRFI allow callers to