Class ceil

All Implemented Interfaces:
ArithFunction, Serializable

public class ceil extends DefaultArithFunction

Function: math.ceil(N): encapsulates java Math.ceil(N), returns the smallest double value that is not less than the argument and is equal to a mathematical integer.

Examples:

  • math.ceil(3.1): returns 4.
  • math.ceil(3.9): returns 4.
See Also: