Class CeilFunction


  • public class CeilFunction
    extends FunctionBase
    http://docs.jsonata.org/numeric-functions.html $ceil(number) Returns the value of number rounded up to the nearest integer that is greater than or equal to number. If number is not specified (i.e. this function is invoked with no arguments), then the context value is used as the value of number. Examples $ceil(5)==5 $ceil(5.3)==6 $ceil(5.8)==6 $ceil(-5.3)==-5