summary refs log tree commit diff
path: root/srfi-214.html
diff options
context:
space:
mode:
Diffstat (limited to 'srfi-214.html')
-rw-r--r--srfi-214.html4
1 files changed, 2 insertions, 2 deletions
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>