Next: syslib numerics remainder, Previous: syslib numerics quorem, Up: syslib numerics [Index]
These functions perform the integer division between exact and inexact numbers and return the quotient. For all the functions: the second argument must be non–zero. syslib numerics quorem for more details on the operations.
Perform the integer division between any exact or inexact integer and a fixnum. If num is not an integer: an error is raised. Return exact or inexact integers.
Perform the integer division between any exact or inexact integer and a bignum. If num is not an integer: an error is raised. Return exact or inexact integers.
Perform the integer division between any exact or inexact integer and a flonum. If num is not an integer: an error is raised. Return exact or inexact integers.
Perform the integer division between a fixnum and any exact or inexact integer. If num is not an integer: an error is raised. Return exact or inexact integers.
Perform the integer division between a bignum and any exact or inexact integer. If num is not an integer: an error is raised. Return exact or inexact integers.
Perform the integer division between a flonum and any exact or inexact integer. If num is not an integer: an error is raised. Return exact or inexact integers.
Perform the integer division between a fixnum and a fixnum; return a fixnum or bignum.
Perform the integer division between a fixnum and a bignum; return fixnums.
Perform the integer division between a fixnum and a flonum; return flonums.
Perform the integer division between a bignum and a fixnum; return fixnums.
Perform the integer division between a bignum and a bignum; return fixnums or bignums.
Perform the integer division between a bignum and a flonum; return flonums.
Perform the integer division between a flonum and a fixnum; return flonums.
Perform the integer division between a flonum and a bignum; return flonums.
Perform the integer division between a flonum and a flonum; return flonums.
Next: syslib numerics remainder, Previous: syslib numerics quorem, Up: syslib numerics [Index]