# File lib/core/facets/numeric/round.rb, line 63 def round_to( n ) #n=1 return self if n == 0 (self * (1.0 / n)).round.to_f / (1.0 / n) end