Test case name | Result |
---|---|
x * x | |
Math.pow(x, 2) | |
x ** 2 | |
y * y | |
Math.pow(y, 2) | |
y ** 2 |
Test name | Executions per second |
---|---|
x * x | 4607936.0 Ops/sec |
Math.pow(x, 2) | 2844376.2 Ops/sec |
x ** 2 | 8545139.0 Ops/sec |
y * y | 4839461.5 Ops/sec |
Math.pow(y, 2) | 2934075.2 Ops/sec |
y ** 2 | 8612083.0 Ops/sec |