method
round
v2_1_10 -
Show latest stable
- Class:
REXML::Functions
round( number )public
No documentation available.
# File lib/rexml/functions.rb, line 377
def Functions::round( number )
begin
number(number).round
rescue FloatDomainError
number(number)
end
end