round

expect fun round(operand: Expression): Expression(source)

Creates a ROUND(expr) function that returns the rounded value of the given numeric expression.

Return

The ROUND(expr) function.

Parameters

operand

The expression.


expect fun round(operand: Expression, digits: Expression): Expression(source)

Creates a ROUND(expr, digits) function that returns the rounded value to the given number of digits of the given numeric expression.

Return

The ROUND(expr, digits) function.

Parameters

operand

The numeric expression.

digits

The number of digits.

actual fun round(operand: Expression): Expression(source)
actual fun round(operand: Expression, digits: Expression): Expression(source)
actual fun round(operand: Expression): Expression(source)
actual fun round(operand: Expression, digits: Expression): Expression(source)