diff options
author | Arthur A. Gleckler <srfi@speechcode.com> | 2021-03-11 21:07:55 -0800 |
---|---|---|
committer | Arthur A. Gleckler <srfi@speechcode.com> | 2021-03-11 21:07:55 -0800 |
commit | c96d15d3051dc144d52461b87f5d730247b52b81 (patch) | |
tree | c40cc8bf14007cce1e09bfc52626bacb0b2a1bea /index.html | |
parent | 6cce52203afe83aaf4152dd5b877f9712cba922d (diff) | |
download | srfi-214-c96d15d3051dc144d52461b87f5d730247b52b81.tar.gz srfi-214-c96d15d3051dc144d52461b87f5d730247b52b81.tar.xz srfi-214-c96d15d3051dc144d52461b87f5d730247b52b81.zip |
Remove See-also to SRFI 10. Update abstract.
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html index c24a0d5..68e2bbb 100644 --- a/index.html +++ b/index.html @@ -23,7 +23,7 @@ <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="keywords">keywords: <a href="https://srfi.schemers.org/?keywords=data-structure">Data Structure</a></p><span class="see-also">See also <a href="/srfi-10/">SRFI 10: #, external form</a>, <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> + <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"> <li><a href="srfi-214.html">The SRFI Document</a></li> @@ -76,4 +76,4 @@ <input name="list" type="hidden" value="srfi-214@srfi.schemers.org"></form></a></li></ul> - <h2>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 O(1) random access, O(1) insertion/removal at the end, and O(n) insertion/removal elsewhere. 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></body></html> \ No newline at end of file + <h2>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></body></html> \ No newline at end of file |