Method: Symbol#duplicable?

Defined in:
lib/wedge/utilis/duplicable.rb

#duplicable?Boolean

Symbols are not duplicable:

:my_symbol.duplicable? # => false
:my_symbol.dup         # => TypeError: can't dup Symbol

Returns:

  • (Boolean)


73
74
75
# File 'lib/wedge/utilis/duplicable.rb', line 73

def duplicable?
  false
end