instance method
duplicable?
Ruby on Rails 3.2.22.5
Since v3.1.12 Last seen in v5.2.8.1Signature
duplicable?()
Symbols are not duplicable:
:my_symbol.duplicable? # => false :my_symbol.dup # => TypeError: can't dup Symbol
Source
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 68
def duplicable?
false
end
Defined in activesupport/lib/active_support/core_ext/object/duplicable.rb line 68
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Symbol