mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-16 09:17:35 +02:00
Initial version of vector-append
This commit is contained in:
parent
2edaffc320
commit
3f5a0b6197
1 changed files with 2 additions and 1 deletions
|
@ -174,7 +174,8 @@
|
||||||
(list->vector
|
(list->vector
|
||||||
(string->list str)))
|
(string->list str)))
|
||||||
(define (vector-append . vecs)
|
(define (vector-append . vecs)
|
||||||
vecs) ; TODO
|
(list->vector
|
||||||
|
(apply append (map vector->list vecs))))
|
||||||
|
|
||||||
(define (vector-copy vec . opts)
|
(define (vector-copy vec . opts)
|
||||||
(letrec ((len (vector-length vec))
|
(letrec ((len (vector-length vec))
|
||||||
|
|
Loading…
Add table
Reference in a new issue