Next: , Previous: , Up: syslib numerics   [Index]


12.10.8 Numbers division

Unsafe Operation: $div-number-number num1 num2

Divide any couple of numbers and return the result.

Generic number as second operand

Unsafe Operation: $div-fixnum-number fx num

Divide a fixnum with a number and return the result.

Unsafe Operation: $div-bignum-number bn num

Divide a bignum with a number and return the result.

Unsafe Operation: $div-flonum-number fl num

Divide a flonum with a number and return the result.

Unsafe Operation: $div-ratnum-number rt num

Divide a ratnum with a number and return the result.

Unsafe Operation: $div-compnum-number cn num

Divide a compnum with a number and return the result.

Unsafe Operation: $div-cflonum-number cfl num

Divide a cflonum with a number and return the result.

Generic number as first operand

Unsafe Operation: $div-number-fixnum num fx

Divide any number with a fixnum and return the result.

Unsafe Operation: $div-number-bignum num bn

Divide any number with a bignum and return the result.

Unsafe Operation: $div-number-flonum num fl

Divide any number with a flonum and return the result.

Unsafe Operation: $div-number-ratnum num rt

Divide any number with a ratnum and return the result.

Unsafe Operation: $div-number-compnum num cn

Divide any number with a compnum and return the result.

Unsafe Operation: $div-number-cflonum num cfl

Divide any number with a cflonum and return the result.

Fixnum as first operand

Unsafe Operation: $div-fixnum-fixnum fx1 fx2

Divide a fixnum with a fixnum and return the result as a fixnum or ratnum.

Unsafe Operation: $div-fixnum-bignum fx bn

Divide a fixnum with a bignum and return the result as a ratnum.

Unsafe Operation: $div-fixnum-flonum fx fl

Divide a fixnum with a flonum and return the result as a flonum.

Unsafe Operation: $div-fixnum-ratnum fx rt

Divide a fixnum with a ratnum and return the result as fixnum, bignum or ratnum.

Unsafe Operation: $div-fixnum-compnum fx cn

Divide a fixnum with a compnum and return the result as a compnum.

Unsafe Operation: $div-fixnum-cflonum fx cfl

Divide a fixnum with a cflonum and return the result as a cflonum.

Bignum as first operand

Unsafe Operation: $div-bignum-fixnum bn fx

Divide a bignum with a fixnum and return the result as a fixnum, bignum or ratnum.

Unsafe Operation: $div-bignum-bignum bn1 bn2

Divide a bignum with a bignum and return the result as a fixnum, bignum or ratnum.

Unsafe Operation: $div-bignum-flonum bn fl

Divide a bignum with a flonum and return the result as a flonum.

Unsafe Operation: $div-bignum-ratnum bn rt

Divide a bignum with a ratnum and return the result as a fixnum, bignum or ratnum.

Unsafe Operation: $div-bignum-compnum bn cn

Divide a bignum with a compnum and return the result as a compnum.

Unsafe Operation: $div-bignum-cflonum bn cfl

Divide a bignum with a cflonum and return the result as a cflonum.

Flonum as first operand

Unsafe Operation: $div-flonum-fixnum fl fx

Divide a flonum with a fixnum and return the result as a flonum.

Unsafe Operation: $div-flonum-bignum fl bn

Divide a flonum with a bignum and return the result as a flonum.

Unsafe Operation: $div-flonum-flonum fl1 fl2

Divide a flonum with a flonum and return the result as a flonum.

Unsafe Operation: $div-flonum-ratnum fl rt

Divide a flonum with a ratnum and return the result as a flonum.

Unsafe Operation: $div-flonum-compnum fl cn

Divide a flonum with a compnum and return the result as a cflonum.

Unsafe Operation: $div-flonum-cflonum fl cfl

Divide a flonum with a cflonum and return the result as a cflonum.

Ratnum as first operand

Unsafe Operation: $div-ratnum-fixnum rt fx

Divide a ratnum with a fixnum and return the result as a fixnum, bignum or ratnum.

Unsafe Operation: $div-ratnum-bignum rt bn

Divide a ratnum with a ratnum and return the result as a fixnum, bignum or ratnum.

Unsafe Operation: $div-ratnum-flonum rt fl

Divide a ratnum with a flonum and return the result as a flonum.

Unsafe Operation: $div-ratnum-ratnum rt1 rt2

Divide a ratnum with a ratnum and return the result as a fixnum, bignum or ratnum.

Unsafe Operation: $div-ratnum-compnum rt cn

Divide a ratnum with a compnum and return the result as a compnum.

Unsafe Operation: $div-ratnum-cflonum rt cfl

Divide a ratnum with a cflonum and return the result as a cflonum.

Compnum as first operand

Unsafe Operation: $div-compnum-fixnum cn fx

Divide a compnum with a fixnum and return the result as a compnum.

Unsafe Operation: $div-compnum-bignum cn bn

Divide a compnum with a bignum and return the result as a compnum.

Unsafe Operation: $div-compnum-ratnum cn rt

Divide a compnum with a ratnum and return the result as a compnum.

Unsafe Operation: $div-compnum-compnum cn1 cn2

Divide a compnum with a compnum and return the result as a compnum.

Unsafe Operation: $div-compnum-flonum cn fl

Divide a compnum with a flonum and return the result as a cflonum.

Unsafe Operation: $div-compnum-cflonum cn cfl

Divide a compnum with a cflonum and return the result as a cflonum.

Cflonum as first operand

Unsafe Operation: $div-cflonum-fixnum cfl fx

Divide a cflonum with a fixnum and return the result as a cflonum.

Unsafe Operation: $div-cflonum-bignum cfl bn

Divide a cflonum with a bignum and return the result as a cflonum.

Unsafe Operation: $div-cflonum-ratnum cfl rt

Divide a cflonum with a ratnum and return the result as a cflonum.

Unsafe Operation: $div-cflonum-flonum cfl fl

Divide a cflonum with a flonum and return the result as a cflonum.

Unsafe Operation: $div-cflonum-compnum cfl cn

Divide a cflonum with a compnum and return the result as a cflonum.

Unsafe Operation: $div-cflonum-cflonum cfl1 cfl2

Divide a cflonum with a cflonum and return the result as a cflonum.


Next: , Previous: , Up: syslib numerics   [Index]