summary refs log tree commit diff
diff options
context:
space:
mode:
authorArthur A. Gleckler <srfi@speechcode.com>2021-03-18 15:40:27 -0700
committerArthur A. Gleckler <srfi@speechcode.com>2021-03-18 15:40:27 -0700
commitc7b10eea0315f59a3806a3195e89a0a2e7a1cf3d (patch)
tree273cdbc70cd0401d0e65f71dbbfe941b9f3cb10e
parent86c0d1caee3678e3442e0e8545b05f93f5c285cf (diff)
downloadsrfi-214-c7b10eea0315f59a3806a3195e89a0a2e7a1cf3d.tar.gz
srfi-214-c7b10eea0315f59a3806a3195e89a0a2e7a1cf3d.tar.xz
srfi-214-c7b10eea0315f59a3806a3195e89a0a2e7a1cf3d.zip
Finalize.
-rw-r--r--README.org2
-rw-r--r--index.html2
-rw-r--r--srfi-214.html4
3 files changed, 4 insertions, 4 deletions
diff --git a/README.org b/README.org
index 42beee2..6316fb9 100644
--- a/README.org
+++ b/README.org
@@ -8,7 +8,7 @@ keywords: [[https://srfi.schemers.org/?keywords=data-structure][Data Structure]]
 
 This repository hosts [[https://srfi.schemers.org/srfi-214/][SRFI 214]]: Flexvectors, 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-117/][SRFI 117: Queues based on lists]], [[https://srfi.schemers.org/srfi-125/][SRFI 125: Intermediate hash tables]], [[https://srfi.schemers.org/srfi-133/][SRFI 133: Vector Library (R7RS-compatible)]], [[https://srfi.schemers.org/srfi-134/][SRFI 134: Immutable Deques]], and [[https://srfi.schemers.org/srfi-158/][SRFI 158: Generators and Accumulators]].
 
diff --git a/index.html b/index.html
index 68e2bbb..0639978 100644
--- a/index.html
+++ b/index.html
@@ -22,7 +22,7 @@
     <h1>SRFI 214: Flexvectors</h1>
     <p class="authors">by Adam Nelson</p>
     <p class="based-on"></p>
-    <p class="status">status: <em>draft</em> (2020-10-07)</p>
+    <p class="status">status: <em>final</em> (2021-03-18)</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-117/">SRFI 117: Queues based on lists</a>, <a href="/srfi-125/">SRFI 125: Intermediate hash tables</a>, <a href="/srfi-133/">SRFI 133: Vector Library (R7RS-compatible)</a>, <a href="/srfi-134/">SRFI 134: Immutable Deques</a>, and <a href="/srfi-158/">SRFI 158: Generators and Accumulators</a>.</span>
 
     <ul class="info">
diff --git a/srfi-214.html b/srfi-214.html
index fd6c56d..57b9cec 100644
--- a/srfi-214.html
+++ b/srfi-214.html
@@ -11,13 +11,13 @@
 <p id="author">by Adam Nelson</p>
 <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+214+at+srfi+dotschemers+dot+org">srfi-214@<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-214">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+214+at+srfi+dotschemers+dot+org">srfi-214@<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-214">archive</a>.</p>
 <ul>
   <li>Received: 2020-10-06</li>
-  <li>60-day deadline: 2020-12-06</li>
   <li>Draft #1 published: 2020-10-07</li>
   <li>Draft #2 published: 2021-01-13</li>
   <li>Draft #3 published: 2021-03-11</li>
+  <li>Finalized: 2021-03-18</li>
 </ul>
 <h2 id="abstract">Abstract</h2>
 <p>A <em>flexvector</em>, also known as a dynamic array or an arraylist, is a mutable vector-like data structure with an adjustable size. Flexvectors allow fast random access and fast insertion/removal at the end. This SRFI defines a suite of operations on flexvectors, modeled after <a href="https://srfi.schemers.org/srfi-133/srfi-133.html">SRFI 133</a>'s vector operations.</p>