5.93
25 Sequences
This library is unstable;
compatibility will not be maintained.
See Unstable: May Change Without Warning
for more information.
(require unstable/sequence) | package: base |
An in-syntax application can provide better performance for syntax iteration when it appears directly in a for clause.
Example: | ||||
|
procedure
(in-sequence-forever seq val) → sequence?
seq : sequence? val : any/c
Produces a sequence whose values are the elements of seq, followed by val repeated.
procedure
(sequence-lift f seq) → sequence?
f : procedure? seq : sequence?
Produces the sequence of f applied to each element of seq.
Example: | ||||
|
The subsequent bindings were added by David Vanderson.
procedure
length : exact-positive-integer? seq : sequence?
Returns a sequence where each element is a list with length
elements from the given sequence.
Example: | ||
|