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


12.10.25.3 Positive fixnum exponent

Unsafe Operation: $expt-number-positive-fixnum num fx

Compute num raised to the power of positive fx; return an unspecified number object. fx must be a positive fixnum.

Unsafe Operation: $expt-fixnum-positive-fixnum fx1 fx2

Compute fx1 raised to the power of positive fx2; return an exact number object. fx2 must be a positive fixnum.

Unsafe Operation: $expt-bignum-positive-fixnum bn fx

Compute bn raised to the power of positive fx; return an exact number object. fx must be a positive fixnum.

Unsafe Operation: $expt-ratnum-positive-fixnum rt fx

Compute rt raised to the power of positive fx; return an exact number object. fx must be a positive fixnum.

Unsafe Operation: $expt-flonum-positive-fixnum fl fx

Compute fl raised to the power of positive fx; return an inexact number object. fx must be a positive fixnum.

Unsafe Operation: $expt-compnum-positive-fixnum cn fx

Compute cn raised to the power of positive fx; return a cflonum. fx must be a positive fixnum.

Unsafe Operation: $expt-cflonum-positive-fixnum cfl fx

Compute cfl raised to the power of positive fx; return a cflonum. fx must be a positive fixnum.