15 Sequences
(require unstable/sequence) |
This library is unstable
; compatibility will not be maintained.
See Unstable for more information.
An in-syntax application can provide better performance for syntax iteration when it appears directly in a for clause.
Example: | ||
| ||
(#<syntax:2:0 1> #<syntax:2:0 2> #<syntax:2:0 3>) |
(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.
(sequence-lift f seq) → sequence? |
f : procedure? |
seq : sequence? |
Produces the sequence of f applied to each element of seq.