Class CeilFunction

  • All Implemented Interfaces:
    Function, Serializable

    public class CeilFunction
    extends FunctionBase
    implements Function
    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
    See Also:
    Serialized Form