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


12.10.18 Minimum between numbers

Notice that if one of the operands is +nan.0 the result is +nan.0.

Any number as first argument

Unsafe Operation: $min-number-fixnum num fx

Return the minimum between the arguments.

Unsafe Operation: $min-number-bignum num bn

Return the minimum between the arguments.

Unsafe Operation: $min-number-ratnum num rt

Return the minimum between the arguments.

Unsafe Operation: $min-number-flonum num fl

Return the minimum between the arguments.

Any number as second argument

Unsafe Operation: $min-fixnum-number fx num

Return the minimum between the arguments.

Unsafe Operation: $min-bignum-number bn num

Return the minimum between the arguments.

Unsafe Operation: $min-flonum-number fl num

Return the minimum between the arguments.

Unsafe Operation: $min-ratnum-number rt num

Return the minimum between the arguments.

Fixnum as first argument

Unsafe Operation: $min-fixnum-fixnum fx1 fx2

Return the minimum between the arguments.

Unsafe Operation: $min-fixnum-bignum fx bn

Return the minimum between the arguments.

Unsafe Operation: $min-fixnum-flonum fx fl

Return the minimum between the arguments.

Unsafe Operation: $min-fixnum-ratnum fx rt

Return the minimum between the arguments.

Bignum as first argument

Unsafe Operation: $min-bignum-fixnum bn fx

Return the minimum between the arguments.

Unsafe Operation: $min-bignum-bignum bn1 bn2

Return the minimum between the arguments.

Unsafe Operation: $min-bignum-ratnum bn rt

Return the minimum between the arguments.

Unsafe Operation: $min-bignum-flonum bn fl

Return the minimum between the arguments.

Flonum as first argument

Unsafe Operation: $min-flonum-fixnum fl fx

Return the minimum between the arguments.

Unsafe Operation: $min-flonum-bignum fl bn

Return the minimum between the arguments.

Unsafe Operation: $min-flonum-ratnum fl rt

Return the minimum between the arguments.

Unsafe Operation: $min-flonum-flonum fl1 fl2

Return the minimum between the arguments.

Ratnum as first argument

Unsafe Operation: $min-ratnum-fixnum rt fx

Return the minimum between the arguments.

Unsafe Operation: $min-ratnum-bignum rt bn

Return the minimum between the arguments.

Unsafe Operation: $min-ratnum-ratnum rt1 rt2

Return the minimum between the arguments.

Unsafe Operation: $min-ratnum-flonum rt fl

Return the minimum between the arguments.


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