mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
c64/128 default values should be complex
This commit is contained in:
parent
2acef43da7
commit
dce487fa3a
1 changed files with 2 additions and 2 deletions
|
@ -53,10 +53,10 @@
|
|||
f64vector-ref f64vector-set! f64? f64vector? make-f64vector f64vector-length 0.)
|
||||
|
||||
(define-storage-class c64-storage-class
|
||||
c64vector-ref c64vector-set! c64? c64vector? make-c64vector c64vector-length 0.)
|
||||
c64vector-ref c64vector-set! c64? c64vector? make-c64vector c64vector-length 0.+0.i)
|
||||
|
||||
(define-storage-class c128-storage-class
|
||||
c128vector-ref c128vector-set! c128? c128vector? make-c128vector c128vector-length 0.)
|
||||
c128vector-ref c128vector-set! c128? c128vector? make-c128vector c128vector-length 0.+0.i)
|
||||
|
||||
(define-storage-class char-storage-class
|
||||
(lambda (vec i) (integer->char (u32vector-ref vec i)))
|
||||
|
|
Loading…
Add table
Reference in a new issue