Sha256: aa705f10ccf09f791ab3abfaf5419fb19a6aced29e43e0daef11e66fb43ef7a9
Contents?: true
Size: 539 Bytes
Versions: 2
Compression:
Stored size: 539 Bytes
Contents
# encoding: utf-8 # A more precise rounding. ~4 times slower than simple round # # 3.904605.round(2) # # => 3.9 # 3.904605.precision(2) # # => 3.91 # # 37.9945.round(2) # # => 37.99 # 37.9945.precision(2) # # => 38.0 class Numeric def precision(precision = 0) power = 10**precision if precision == 0 round else powered = self * power (precision - 1).downto(0).each do |i| powered = powered.round(i).to_f end powered.to_f / power.to_f end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
inactive_support-1.3.0 | lib/inactive_support/numeric/precision.rb |
inactive_support-1.2.0 | lib/inactive_support/numeric/precision.rb |