Class: FalseClass
Instance Method Summary collapse
-
#duplicable? ⇒ Boolean
false
is not duplicable:.
Instance Method Details
#duplicable? ⇒ Boolean
false
is not duplicable:
false.duplicable? # => false
false.dup # => TypeError: can't dup FalseClass
46 47 48 |
# File 'lib/core_ext/object/duplicable.rb', line 46 def duplicable? false end |