BigFloat.ceil

Returns the smallest integer greater than or equal to the BigFloat value.

Syntax

BigFloat.floor(value)

Parameters

Return value

A new BigFloat.

Examples

BigFloat.ceil(10.2)
11
BigFloat.floor(10.9)
11

See also