Class: NilClass
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/try.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/json.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/blank.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/to_query.rb
Instance Method Summary collapse
-
#as_json(options = nil) ⇒ Object
:nodoc:.
-
#blank? ⇒ true
nil
is blank:. -
#to_param ⇒ Object
Returns
self
. -
#try ⇒ Object
Calling
try
onnil
always returnsnil
. -
#try! ⇒ Object
Calling
try!
onnil
always returnsnil
.
Instance Method Details
#as_json(options = nil) ⇒ Object
:nodoc:
87 88 89 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/json.rb', line 87 def as_json( = nil) # :nodoc: self end |
#blank? ⇒ true
nil
is blank:
nil.blank? # => true
56 57 58 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/blank.rb', line 56 def blank? true end |
#to_param ⇒ Object
Returns self
.
20 21 22 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/to_query.rb', line 20 def to_param self end |
#try ⇒ Object
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 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/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 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/try.rb', line 155 def try!(*) nil end |