Jay McCarthy <jay@racket-lang.org>
This package defines semi-persistent vectors. These vectors are persistent, because old versions are maintained. However, performance degrades when old versions are used. Each operation is O(1) if the newest version is used, otherwise each operation is O(n) where n is the number of versions to the current.
procedure
( build-spvector nf)→spvector?
procedure
( make-spvector e...)→spvector?
e:any/c
procedure
vec:spvector?
procedure
( spvector-ref veci)→any/c
vec:spvector?
procedure
( spvector-set veciv)→spvector?
vec:spvector?v:any/c
procedure
( spvector-set! veciv)→void
vec:spvector?v:any/c
Semi-persistent vectors may be used as sequences.
Semi-persistent vectors are implemented using a weak hash table to log undo information for modifications. These are indexed by uninterned symbols that are stored in the spvector? struct. This means that the garbage collector reclaims space in the log when the old version symbols are no longer reachable. Thus, if you use this structure in a purely linear way, it will behavior exactly like normal vectors asymptotically.