Skip to Content Skip to Search
v7.1.0
class FalseClass < Object
Methods
B
T

Public instance methods

blank?()

Permalink

false is blank:

false.blank? # => true

@return [true]

Source code GitHub
# File activesupport/lib/active_support/core_ext/object/blank.rb, line 67
def blank?
  true
end

to_param()

Permalink

Returns self.

Source code GitHub
# File activesupport/lib/active_support/core_ext/object/to_query.rb, line 34
def to_param
  self
end
Definition files