math_mult

Multiplies values.

Target function

Signature

1math_mult(value, ...)

Multiplies values.

math_mult is a global callable that can be used wherever an expression is valid. math_mult 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 value positionally unless the signature shows a keyword form.
...
Additional values may be supplied after the earlier arguments.

Examples

Basic call

1math_mult(2, 3, 4)
The example keeps numeric inputs explicit so integer and decimal behavior remain visible.