8.16.0.4
3 Perflinty Auto
(require perflinty/auto) | package: rackpgmp |
This section describes a sequence library that automatically specializes each instance to a list or vector, depending on the list and vector scores of each instance of a seq.
syntax
(seq v ...)
procedure
(seq? s?) → boolean?
s? : any/c
seq-map does not affect scores.
seq-first adds 1 to the list score.
seq-rest adds 1 to the list score.
seq-cons adds 1 to the list score.
procedure
(seq-append s1 s2) → seq?
s1 : seq? s2 : seq?
Like a append but on seqs.
seq-append adds 1 to the list score.
Like a vector-copy but on seqs.
seq-copy does not affect scores.
Like a vector-ref but on seqs.
seq-ref adds 1 to the vector score.
Like a vector-set! but on seqs.
seq-set! adds 1 to the vector score.
procedure
(seq-length s) → any/c
s : seq?
Like a vector-length but on seqs.
seq-length adds 1 to the vector score.