contents   index   previous   next



Clib.pow()

syntax:

Clib.pow(x, exp)

where:

x - number to raise to a power.

 

exp - exponent of x, power to which to raise x.

 

return:

number - x ^ exp.

 

description:

This method returns x to the power of y.

 

see:

Clib.exp()

 

 


Clib.rand()