ceil(x: f64) → f64
Category: [math](builtinsmath)_
Round up to the nearest integer.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | f64 | The input value. | — |
| returns | f64 | The result. | — |
wcl
ceil(3.1) // round up to a whole number → 4.0ceil(x: f64) → f64
Category: [math](builtinsmath)_
Round up to the nearest integer.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | f64 | The input value. | — |
| returns | f64 | The result. | — |
ceil(3.1) // round up to a whole number → 4.0