Sha256: 3f9447268eafa98e320f9bc81107855778761b54f7cfeda5800efbcfd5f8b700
Contents?: true
Size: 381 Bytes
Versions: 47
Compression:
Stored size: 381 Bytes
Contents
if Numeric.instance_method(:round).arity.zero? require 'backports/tools/arguments' require 'backports/tools/alias_method_chain' class Numeric def round_with_digits(ndigits=0) ndigits = Backports::coerce_to_int(ndigits) ndigits.zero? ? round_without_digits : Float(self).round(ndigits) end Backports.alias_method_chain self, :round, :digits end end
Version data entries
47 entries across 47 versions & 4 rubygems