* exported modulo (incomplete).

This commit is contained in:
Abdulaziz Ghuloum 2007-06-13 12:58:48 +03:00
parent 01f12f135a
commit 6441235594
3 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -98,6 +98,7 @@
(library (ikarus generic-arithmetic)
(export + - * / zero? = < <= > >= add1 sub1 quotient remainder
modulo
positive? expt gcd lcm numerator denominator exact-integer-sqrt
quotient+remainder number->string string->number min max
exact->inexact floor ceiling round log fl=? fl<? fl<=? fl>?
@ -111,7 +112,7 @@
(ikarus system $strings)
(only (ikarus flonums) $flonum->exact)
(except (ikarus) + - * / zero? = < <= > >= add1 sub1 quotient
remainder quotient+remainder number->string positive?
remainder modulo quotient+remainder number->string positive?
string->number expt gcd lcm numerator denominator
exact->inexact floor ceiling round log
exact-integer-sqrt min max

View File

@ -398,6 +398,7 @@
[flonum? i]
[positive? i r]
[quotient i r]
[modulo i r]
[remainder i r]
[quotient+remainder i r]
[number->string i r]