23 lines
578 B
Plaintext
23 lines
578 B
Plaintext
|
[[esql-ceil]]
|
||
|
=== `CEIL`
|
||
|
[.text-center]
|
||
|
image::signature/ceil.svg[]
|
||
|
Round a number up to the nearest integer.
|
||
|
|
||
|
[source.merge.styled,esql]
|
||
|
----
|
||
|
include::{esql-specs}/math.csv-spec[tag=ceil]
|
||
|
----
|
||
|
[%header.monospaced.styled,format=dsv,separator=|]
|
||
|
|===
|
||
|
include::{esql-specs}/math.csv-spec[tag=ceil-result]
|
||
|
|===
|
||
|
|
||
|
NOTE: This is a noop for `long` (including unsigned) and `integer`.
|
||
|
For `double` this picks the the closest `double` value to the integer ala
|
||
|
{javadoc}/java.base/java/lang/Math.html#ceil(double)[Math.ceil].
|
||
|
|
||
|
Supported types:
|
||
|
|
||
|
include::types/ceil.asciidoc[]
|