Class: Numeric

Inherits:
Object show all
Defined in:
lib/overwrite.rb

Instance Method Summary collapse

Instance Method Details

#percent_of(n) ⇒ Float

Convert number to percent

Returns:



26
27
28
# File 'lib/overwrite.rb', line 26

def percent_of(n)
  self.to_f / n.to_f * 100.0
end