Class: FalseClass
Instance Method Summary collapse
-
#no? ⇒ Boolean
(also: #false?)
See String#no? from the core extensions.
-
#yes? ⇒ Boolean
(also: #true?)
See String#yes? from the core extensions.
Instance Method Details
#no? ⇒ Boolean Also known as: false?
See String#no? from the core extensions. Always true here.
20 |
# File 'lib/core_ext/boolean.rb', line 20 def no? ; true ; end |
#yes? ⇒ Boolean Also known as: true?
See String#yes? from the core extensions. Always false here.
16 |
# File 'lib/core_ext/boolean.rb', line 16 def yes? ; false ; end |