exp(x: f64) → f64
Category: [math](builtinsmath)_
e raised to the power x.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | f64 | The input value. | — |
| returns | f64 | The result. | — |
wcl
exp(0.0) // e raised to the power 0 → 1.0exp(x: f64) → f64
Category: [math](builtinsmath)_
e raised to the power x.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | f64 | The input value. | — |
| returns | f64 | The result. | — |
exp(0.0) // e raised to the power 0 → 1.0