On this page
class Rational
Public Instance Methods
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 150
def duplicable?
false
end
Rationals are not duplicable for RUBY_VERSION < 2.5.0:
Rational(1).duplicable? # => false Rational(1).dup # => TypeError: can't copy Rational
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.