math_pow
Raises a value to a power.
Target
Signature
1math_pow(value, factor)Raises a value to a power.
math_pow is a global callable that can be used wherever an expression is valid. math_pow is part of numeric expression work. Be deliberate about integer versus decimal inputs because several math helpers preserve or infer the result type from their arguments.
Parameters
value- Required value. Supply
valuepositionally unless the signature shows a keyword form. factor- Required value. Supply
factorpositionally unless the signature shows a keyword form.
Examples
Basic call
1math_pow(2, 8)The example keeps numeric inputs explicit so integer and decimal behavior remain visible.