Sha256: d2a3aee0c5e1a0b6219d35892a610c330481003fb484b800fa924a742a543dd2

Contents?: true

Size: 308 Bytes

Versions: 177

Compression:

Stored size: 308 Bytes

Contents

# frozen_string_literal: true

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 == 0 : self % number == 0
  end
end

Version data entries

177 entries across 169 versions & 22 rubygems

Version Path
activesupport-8.0.0 lib/active_support/core_ext/integer/multiple.rb
activesupport-7.2.2 lib/active_support/core_ext/integer/multiple.rb
activesupport-7.1.5 lib/active_support/core_ext/integer/multiple.rb
activesupport-8.0.0.rc2 lib/active_support/core_ext/integer/multiple.rb
activesupport-7.2.1.2 lib/active_support/core_ext/integer/multiple.rb
activesupport-7.1.4.2 lib/active_support/core_ext/integer/multiple.rb
activesupport-7.0.8.6 lib/active_support/core_ext/integer/multiple.rb
activesupport-6.1.7.10 lib/active_support/core_ext/integer/multiple.rb
activesupport-8.0.0.rc1 lib/active_support/core_ext/integer/multiple.rb
activesupport-6.1.7.9 lib/active_support/core_ext/integer/multiple.rb
activesupport-7.2.1.1 lib/active_support/core_ext/integer/multiple.rb
activesupport-7.1.4.1 lib/active_support/core_ext/integer/multiple.rb
activesupport-7.0.8.5 lib/active_support/core_ext/integer/multiple.rb
activesupport-8.0.0.beta1 lib/active_support/core_ext/integer/multiple.rb
omg-activesupport-8.0.0.alpha9 lib/active_support/core_ext/integer/multiple.rb
omg-activesupport-8.0.0.alpha8 lib/active_support/core_ext/integer/multiple.rb
omg-activesupport-8.0.0.alpha7 lib/active_support/core_ext/integer/multiple.rb
omg-activesupport-8.0.0.alpha4 lib/active_support/core_ext/integer/multiple.rb
omg-activesupport-8.0.0.alpha3 lib/active_support/core_ext/integer/multiple.rb
omg-activesupport-8.0.0.alpha2 lib/active_support/core_ext/integer/multiple.rb