Sha256: 3efbcf494953d6024bf0f11c4b9ad41dba43811633d5611212d0dce8a2f69af3

Contents?: true

Size: 273 Bytes

Versions: 201

Compression:

Stored size: 273 Bytes

Contents

class Integer
  # Check whether the integer is evenly divisible by the argument.
  #
  #   0.multiple_of?(0)  # => true
  #   6.multiple_of?(5)  # => false
  #   10.multiple_of?(2) # => true
  def multiple_of?(number)
    number != 0 ? self % number == 0 : zero?
  end
end

Version data entries

201 entries across 192 versions & 19 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/core_ext/integer/multiple.rb
activesupport-4.2.11.3 lib/active_support/core_ext/integer/multiple.rb
activesupport-4.2.11.2 lib/active_support/core_ext/integer/multiple.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/core_ext/integer/multiple.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/core_ext/integer/multiple.rb
activesupport-5.1.7 lib/active_support/core_ext/integer/multiple.rb
activesupport-5.1.7.rc1 lib/active_support/core_ext/integer/multiple.rb
activesupport-5.1.6.2 lib/active_support/core_ext/integer/multiple.rb
activesupport-5.0.7.2 lib/active_support/core_ext/integer/multiple.rb
activesupport-4.2.11.1 lib/active_support/core_ext/integer/multiple.rb
activesupport-5.1.6.1 lib/active_support/core_ext/integer/multiple.rb
activesupport-5.0.7.1 lib/active_support/core_ext/integer/multiple.rb
activesupport-4.2.11 lib/active_support/core_ext/integer/multiple.rb
activesupport-5.1.6 lib/active_support/core_ext/integer/multiple.rb
activesupport-5.0.7 lib/active_support/core_ext/integer/multiple.rb
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/core_ext/integer/multiple.rb
activesupport-5.1.5 lib/active_support/core_ext/integer/multiple.rb
activesupport-5.1.5.rc1 lib/active_support/core_ext/integer/multiple.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer/multiple.rb
activesupport-4.2.10 lib/active_support/core_ext/integer/multiple.rb