Class: NilClass
- Defined in:
- motion/core_ext/object/try.rb,
motion/core_ext/object/blank.rb,
motion/core_ext/object/to_json.rb,
motion/core_ext/object/to_param.rb,
motion/core_ext/object/duplicable.rb
Instance Method Summary collapse
-
#blank? ⇒ Boolean
nil
is blank:. -
#duplicable? ⇒ Boolean
nil
is not duplicable:. -
#to_json ⇒ Object
Returns ‘null’.
-
#to_param ⇒ Object
Returns
self
. -
#try(*args) ⇒ Object
Calling
try
onnil
always returnsnil
. - #try!(*args) ⇒ Object
Instance Method Details
#blank? ⇒ Boolean
nil
is blank:
nil.blank? # => true
46 47 48 |
# File 'motion/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 'motion/core_ext/object/duplicable.rb', line 34 def duplicable? false end |
#to_json ⇒ Object
Returns ‘null’.
19 20 21 |
# File 'motion/core_ext/object/to_json.rb', line 19 def to_json 'null' end |
#to_param ⇒ Object
Returns self
.
10 11 12 |
# File 'motion/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 'motion/core_ext/object/try.rb', line 71 def try(*args) nil end |
#try!(*args) ⇒ Object
75 76 77 |
# File 'motion/core_ext/object/try.rb', line 75 def try!(*args) nil end |