Documentation moved.This entry is now part of the unified function reference. Open the unified page → API/nerdamer APIFunctionnerdamer.ceilsrc/index.ts:783nerdamer.ceil(x: ExpressionInput): ExpressionRounds a number up to the nearest integer (ceiling function).ParametersNameTypeDescriptionxExpressionInputThe expression to round up.ReturnsExpression — The least integer greater than or equal to `x`.Examplesceiling('3.2').text() // "4" ceiling('-2.7').text() // "-2" ceiling(5).text() // "5" ceiling('x').text() // "ceil(x)"