Class: NilClass

Inherits:
Object show all
Defined in:
activesupport/lib/active_support/core_ext/object/try.rb,
activesupport/lib/active_support/core_ext/object/json.rb,
activesupport/lib/active_support/core_ext/object/blank.rb,
activesupport/lib/active_support/core_ext/object/to_query.rb

Instance Method Summary collapse

Instance Method Details

#as_json(options = nil) ⇒ Object

:nodoc:



95
96
97
# File 'activesupport/lib/active_support/core_ext/object/json.rb', line 95

def as_json(options = nil) # :nodoc:
  self
end

#blank?true

nil is blank:

nil.blank? # => true

Returns:

  • (true)


56
57
58
# File 'activesupport/lib/active_support/core_ext/object/blank.rb', line 56

def blank?
  true
end

#to_paramObject

Returns self.



20
21
22
# File 'activesupport/lib/active_support/core_ext/object/to_query.rb', line 20

def to_param
  self
end

#tryObject

Calling try on nil always returns nil. It becomes especially helpful when navigating through associations that may return nil.

nil.try(:name) # => nil

Without try

@person && @person.children.any? && @person.children.first.name

With try

@person.try(:children).try(:first).try(:name)


148
149
150
# File 'activesupport/lib/active_support/core_ext/object/try.rb', line 148

def try(*)
  nil
end

#try!Object

Calling try! on nil always returns nil.

nil.try!(:name) # => nil


155
156
157
# File 'activesupport/lib/active_support/core_ext/object/try.rb', line 155

def try!(*)
  nil
end