pub fn xpath_round(x: Decimal) -> Decimal
XPath fn:round — closest integer, ties toward +∞.
fn:round
floor(x + 0.5). Saturates: if x + 0.5 overflows, returns x.
floor(x + 0.5)
x + 0.5
x