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