X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=scheme.forth.jl.git;a=blobdiff_plain;f=src%2Fscheme-library.scm;h=f8c0ec492c76fb8052f37b40faf9ae4f1ac80fb0;hp=e8e92454acbe64d5a709d60ec913fd5e7365b161;hb=613b910f0ceb0ec0948a0e0595cd3e82086754cf;hpb=adf3bf12d8ae16055f381d06079804068e6c1611 diff --git a/src/scheme-library.scm b/src/scheme-library.scm index e8e9245..f8c0ec4 100644 --- a/src/scheme-library.scm +++ b/src/scheme-library.scm @@ -17,8 +17,30 @@ ;; NUMBERS +; Type dispatch and promotion + +(define (type-dispatch ops x) + (if (flonum? x) + ((cdr ops) x) + ((car ops) x))) + +(define (promote-dispatch ops x y) + (if (flonum? x) + (if (flonum? y) + ((cdr ops) x y) + ((cdr ops) x (fixnum->flonum y))) + (if (flonum? y) + ((cdr ops) (fixnum->flonum x) y) + ((car ops) x y)))) + ; Unary ops +(define (neg x) + (type-dispatch (cons fix:neg flo:neg) x)) + +(define (abs x) + (type-dispatch (cons fix:abs flo:abs) x)) + (define (flo:1+ x) (flo:+ x 1.0)) (define (flo:1- x) (flo:- x 1.0)) @@ -40,22 +62,6 @@ (define (truncate x) (apply-to-flonum flo:truncate x)) -; Type dispatch and promotion - -(define (type-dispatch ops x) - (if (flonum? x) - ((cdr ops) x) - ((car ops) x))) - -(define (promote-dispatch ops x y) - (if (flonum? x) - (if (flonum? y) - ((cdr ops) x y) - ((cdr ops) x (fixnum->flonum y))) - (if (flonum? y) - ((cdr ops) (fixnum->flonum x) y) - ((car ops) x y)))) - ; Binary operations (define (fix:/ x y) ; Non-standard definition while we don't have rationals @@ -74,9 +80,6 @@ (define (pair<= x y) (promote-dispatch (cons fix:<= flo:<=) x y)) (define (pair= x y) (promote-dispatch (cons fix:= flo:=) x y)) -(define (neg x) - (type-dispatch (cons fix:neg flo:neg) x)) - (define (null? arg) (eq? arg '()))