Product Documentation
Cadence SKILL Language Reference
Product Version IC23.1, November 2023

times

times( 
n_op1 
n_op2 
[ n_op3 ... ] 
) 
=> n_result

Description

Returns the result of multiplying the first operand by one or more operands. Prefix form of the * arithmetic operator.

Arguments

n_op1

First operand to be multiplied.

n_op2

Second operand to be multiplied.

n_op3

Optional additional operands to be multiplied.

Value Returned

n_result

Result of the multiplication.

Examples

times(5 4 3 2 1)  
=> 120
times(-12 -13)    
=> 156
times(12.2 -13.3) 
=> -162.26

Related Topics

xtimes


Return to top
 ⠀
X