* moved fxadd1 and fxsub1 to ikarus.fixnums
This commit is contained in:
parent
0399dc386e
commit
7e421bb907
BIN
src/ikarus.boot
BIN
src/ikarus.boot
Binary file not shown.
|
@ -12,18 +12,7 @@
|
||||||
(lambda () (void)))
|
(lambda () (void)))
|
||||||
|
|
||||||
|
|
||||||
(primitive-set! 'fxadd1
|
|
||||||
(lambda (n)
|
|
||||||
(if (fixnum? n)
|
|
||||||
($fxadd1 n)
|
|
||||||
(error 'fxadd1 "~s is not a fixnum" n))))
|
|
||||||
|
|
||||||
(primitive-set! 'fxsub1
|
|
||||||
(lambda (n)
|
|
||||||
(if (fixnum? n)
|
|
||||||
($fxsub1 n)
|
|
||||||
(error 'fxsub1 "~s is not a fixnum" n))))
|
|
||||||
|
|
||||||
|
|
||||||
(primitive-set! 'integer->char
|
(primitive-set! 'integer->char
|
||||||
(lambda (n)
|
(lambda (n)
|
||||||
|
|
|
@ -3,16 +3,31 @@
|
||||||
|
|
||||||
|
|
||||||
(library (ikarus fixnums)
|
(library (ikarus fixnums)
|
||||||
(export fxzero?)
|
(export fxzero? fxadd1 fxsub1)
|
||||||
(import
|
(import
|
||||||
(except (ikarus) fxzero?))
|
(only (scheme) $fxadd1 $fxsub1)
|
||||||
|
(except (ikarus) fxzero? fxadd1 fxsub1))
|
||||||
|
|
||||||
(define fxzero?
|
(define fxzero?
|
||||||
(lambda (x)
|
(lambda (x)
|
||||||
(cond
|
(cond
|
||||||
[(eq? x 0) #t]
|
[(eq? x 0) #t]
|
||||||
[(fixnum? x) #f]
|
[(fixnum? x) #f]
|
||||||
[else (error 'fxzero? "~s is not a fixnum" x)]))))
|
[else (error 'fxzero? "~s is not a fixnum" x)])))
|
||||||
|
|
||||||
|
(define fxadd1
|
||||||
|
(lambda (n)
|
||||||
|
(if (fixnum? n)
|
||||||
|
($fxadd1 n)
|
||||||
|
(error 'fxadd1 "~s is not a fixnum" n))))
|
||||||
|
|
||||||
|
(define fxsub1
|
||||||
|
(lambda (n)
|
||||||
|
(if (fixnum? n)
|
||||||
|
($fxsub1 n)
|
||||||
|
(error 'fxsub1 "~s is not a fixnum" n))))
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
(library (ikarus flonums)
|
(library (ikarus flonums)
|
||||||
|
|
Loading…
Reference in New Issue