cbrt(x: f64) → f64
Category: [math](builtinsmath)_
Cube root.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | f64 | The input value. | — |
| returns | f64 | The result. | — |
wcl
cbrt(27) // cube root → 3.0cbrt(x: f64) → f64
Category: [math](builtinsmath)_
Cube root.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | f64 | The input value. | — |
| returns | f64 | The result. | — |
cbrt(27) // cube root → 3.0