method

round

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