Class: Method

Inherits:
Object show all
Defined in:
lib/ruby/commons/core_ext/object/duplicable.rb

Instance Method Summary collapse

Instance Method Details

#mp_duplicable?Boolean

Methods are not duplicable:

method(:puts).mp_duplicable? # => false
method(:puts).dup            # => TypeError: allocator undefined for Method

Returns:

  • (Boolean)


97
98
99
# File 'lib/ruby/commons/core_ext/object/duplicable.rb', line 97

def mp_duplicable?
  false
end