IntPower

 Qubes 6.0 Elève un nombre à une puissance entière

Syntaxe

function IntPower(base: Float; exponent: Integer): Float
function IntPower(base: BigInteger; exponent: Integer): BigInteger (Qubes 6.8)
base: nombre
exponent: puissance

Remarques

Quand la puissance est entière, cette fonction est plus performante que la fonction Power.

Exemples

IntPower(2, 3) // = 8

Classification

Internal Maths Transcendantale