Class: NilClass
- Defined in:
- lib/active_support/json/encoding.rb,
lib/active_support/core_ext/object/try.rb,
lib/active_support/core_ext/object/blank.rb,
lib/active_support/core_ext/object/to_param.rb,
lib/active_support/core_ext/object/duplicable.rb
Instance Method Summary collapse
-
#as_json(options = nil) ⇒ Object
:nodoc:.
-
#blank? ⇒ Boolean
nil
is blank:. -
#duplicable? ⇒ Boolean
nil
is not duplicable:. -
#encode_json(encoder) ⇒ Object
:nodoc:.
-
#to_param ⇒ Object
Returns
self
. -
#try(*args) ⇒ Object
Calling
try
onnil
always returnsnil
. - #try!(*args) ⇒ Object
Instance Method Details
#as_json(options = nil) ⇒ Object
:nodoc:
183 184 185 |
# File 'lib/active_support/json/encoding.rb', line 183 def as_json( = nil) #:nodoc: self end |
#blank? ⇒ Boolean
nil
is blank:
nil.blank? # => true
46 47 48 |
# File 'lib/active_support/core_ext/object/blank.rb', line 46 def blank? true end |
#duplicable? ⇒ Boolean
nil
is not duplicable:
nil.duplicable? # => false
nil.dup # => TypeError: can't dup NilClass
34 35 36 |
# File 'lib/active_support/core_ext/object/duplicable.rb', line 34 def duplicable? false end |
#encode_json(encoder) ⇒ Object
:nodoc:
187 188 189 |
# File 'lib/active_support/json/encoding.rb', line 187 def encode_json(encoder) #:nodoc: 'null' end |
#to_param ⇒ Object
Returns self
.
10 11 12 |
# File 'lib/active_support/core_ext/object/to_param.rb', line 10 def to_param self end |
#try(*args) ⇒ Object
Calling try
on nil
always returns nil
. It becomes specially helpful when navigating through associations that may return nil
.
nil.try(:name) # => nil
Without try
@person && !@person.children.blank? && @person.children.first.name
With try
@person.try(:children).try(:first).try(:name)
71 72 73 |
# File 'lib/active_support/core_ext/object/try.rb', line 71 def try(*args) nil end |
#try!(*args) ⇒ Object
75 76 77 |
# File 'lib/active_support/core_ext/object/try.rb', line 75 def try!(*args) nil end |