From c96d15d3051dc144d52461b87f5d730247b52b81 Mon Sep 17 00:00:00 2001 From: "Arthur A. Gleckler" Date: Thu, 11 Mar 2021 21:07:55 -0800 Subject: Remove See-also to SRFI 10. Update abstract. --- index.html | 4 ++-- 1 file 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 @@

by Adam Nelson

status: draft (2020-10-07)

-

keywords: Data Structure

See also SRFI 10: #, external form, SRFI 117: Queues based on lists, SRFI 125: Intermediate hash tables, SRFI 133: Vector Library (R7RS-compatible), SRFI 134: Immutable Deques, and SRFI 158: Generators and Accumulators. +

keywords: Data Structure

See also SRFI 117: Queues based on lists, SRFI 125: Intermediate hash tables, SRFI 133: Vector Library (R7RS-compatible), SRFI 134: Immutable Deques, and SRFI 158: Generators and Accumulators. -

Abstract

A flexvector, 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 SRFI 133's vector operations.

\ No newline at end of file +

Abstract

A flexvector, 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 SRFI 133's vector operations.

\ No newline at end of file -- cgit 1.4.1