Description
The fn:round function is used to round a numeric value to the nearest integer. If the decimal portion of the number is .5 or greater, it is rounded up to the greater whole number (even if it is negative), otherwise it is rounded down.
The result type depends the numeric type of the argument. If $arg is untyped, it is cast to xs:double .
This description is © Copyright 2007, Priscilla Walmsley. It is excerpted from the book XQuery by Priscilla Walmsley, O'Reilly, 2007. For a complete explanation of this function, please refer to Appendix A of the book. Arguments and Return TypeName | Type |
$arg |
numeric? |
return value |
numeric? |
ExamplesXPath Example | Results |
---|
round(5) |
5 |
round(5.1) |
5 |
round(5.5) |
6 |
round(-5.5) |
-5 |
round(-5.51) |
-6 |
See AlsoHistory |
Recommended Reading:
|