Sha256: 7c66ca9705805d009b9d597fe924724628cfc496d8fb7ac8810aa5404403fdc5

Contents?: true

Size: 1.68 KB

Versions: 39

Compression:

Stored size: 1.68 KB

Contents

# originally taken from: https://github.com/rails/rails/blob/main/activesupport/lib/active_support/core_ext/object/duplicable.rb

#--
# Most objects are cloneable, but not all. For example you can't dup methods:
#
#   method(:puts).dup # => TypeError: allocator undefined for Method
#
# Classes may signal their instances are not duplicable removing +dup+/+clone+
# or raising exceptions from them. So, to dup an arbitrary object you normally
# use an optimistic approach and are ready to catch an exception, say:
#
#   arbitrary_object.dup rescue object
#
# Rails dups objects in a few critical spots where they are not that arbitrary.
# That rescue is very expensive (like 40 times slower than a predicate), and it
# is often triggered.
#
# That's why we hardcode the following cases and check duplicable? instead of
# using that rescue idiom.
#++
class Object
  # Can you safely dup this object?
  #
  # False for method objects;
  # true otherwise.
  def duplicable?
    true
  end
end

class Method
  # Methods are not duplicable:
  #
  #  method(:puts).duplicable? # => false
  #  method(:puts).dup         # => TypeError: allocator undefined for Method
  def duplicable?
    false
  end
end

class UnboundMethod
  # Unbound methods are not duplicable:
  #
  #  method(:puts).unbind.duplicable? # => false
  #  method(:puts).unbind.dup         # => TypeError: allocator undefined for UnboundMethod
  def duplicable?
    false
  end
end

require "singleton"

module Singleton
  # Singleton instances are not duplicable:
  #
  # Class.new.include(Singleton).instance.dup # TypeError (can't dup instance of singleton
  def duplicable?
    false
  end
end

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
isomorfeus-transport-23.9.0.rc12 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc11 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc10 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc9 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc8 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc7 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc6 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc5 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc4 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc3 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc2 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.9.0.rc1 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.8.0.rc3 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.8.0.rc2 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.8.0.rc1 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.7.0.rc5 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.7.0.rc4 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.7.0.rc3 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.7.0.rc2 lib/isomorfeus/core_ext/object/duplicable.rb
isomorfeus-transport-23.7.0.rc1 lib/isomorfeus/core_ext/object/duplicable.rb