mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 20:45:06 +02:00
Added stubs
This commit is contained in:
parent
7d7e77df3d
commit
65d53c0b6b
1 changed files with 7 additions and 0 deletions
|
@ -41,6 +41,7 @@
|
||||||
make-string
|
make-string
|
||||||
vector
|
vector
|
||||||
vector->list
|
vector->list
|
||||||
|
vector->string
|
||||||
error
|
error
|
||||||
raise
|
raise
|
||||||
raise-continuable
|
raise-continuable
|
||||||
|
@ -161,6 +162,12 @@
|
||||||
(loop (+ i 1)
|
(loop (+ i 1)
|
||||||
(cons (vector-ref vec i) lst))))))
|
(cons (vector-ref vec i) lst))))))
|
||||||
(loop start '())))
|
(loop start '())))
|
||||||
|
(define (vector->string vec . opts)
|
||||||
|
TODO
|
||||||
|
)
|
||||||
|
(define (string->vector str . opts)
|
||||||
|
TODO
|
||||||
|
)
|
||||||
|
|
||||||
(define (boolean=? b1 b2 . bs)
|
(define (boolean=? b1 b2 . bs)
|
||||||
(Cyc-obj=? boolean? b1 (cons b2 bs)))
|
(Cyc-obj=? boolean? b1 (cons b2 bs)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue