Class: FalseClass
Instance Method Summary collapse
-
#duplicable? ⇒ Boolean
falseis not duplicable:.
Instance Method Details
#duplicable? ⇒ Boolean
false is not duplicable:
false.duplicable? # => false
false.dup # => TypeError: can't dup FalseClass
69 70 71 |
# File 'lib/appium_lib/rails/duplicable.rb', line 69 def duplicable? false end |