Class: FalseClass
Instance Method Summary collapse
-
#blank? ⇒ true
private
false
is blank:. - #present? ⇒ false private
Instance Method Details
#blank? ⇒ true
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
false
is blank:
false.blank? # => true
72 |
# File 'extend/blank.rb', line 72 def blank? = true |
#present? ⇒ false
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
75 |
# File 'extend/blank.rb', line 75 def present? = false # :nodoc: |