Sha256: 01af2ef3da3927c1d0d6e25f37ee43726e979d2e48db185a29d2866c9c981d17

Contents?: true

Size: 202 Bytes

Versions: 62

Compression:

Stored size: 202 Bytes

Contents

class Float
  def round_to(x)
    (self * 10**x).round.to_f / 10**x
  end

  def ceil_to(x)
    (self * 10**x).ceil.to_f / 10**x
  end

  def floor_to(x)
    (self * 10**x).floor.to_f / 10**x
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.5.27 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.26 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.45 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.25 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.23 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.44 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.22 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.43 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.21 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.42 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.20 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.41 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.19 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.40 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.18 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.39 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.17 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.38 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.5.16 lib/workarea/ext/freedom_patches/float.rb
workarea-core-3.4.37 lib/workarea/ext/freedom_patches/float.rb