ceil(x: f64) → f64

Category: [math](builtinsmath)_

Round up to the nearest integer.

ParameterTypeDescriptionRemarks
xf64The input value.
returnsf64The result.
wcl
ceil(3.1)   // round up to a whole number → 4.0