Class: NilClass
- Defined in:
- lib/droiuby/support/object/try.rb,
 lib/droiuby/support/object/blank.rb,
 lib/droiuby/support/object/to_param.rb,
 lib/droiuby/support/object/duplicable.rb
Instance Method Summary collapse
- 
  
    
      #blank?  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    nilis blank:.
- 
  
    
      #duplicable?  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    nilis not duplicable:.
- 
  
    
      #to_param  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Returns self.
- 
  
    
      #try(*args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Calling tryonnilalways returnsnil.
- #try!(*args) ⇒ Object
Instance Method Details
#blank? ⇒ Boolean
nil is blank:
nil.blank? # => true
| 46 47 48 | # File 'lib/droiuby/support/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/droiuby/support/object/duplicable.rb', line 34 def duplicable? false end | 
#to_param ⇒ Object
Returns self.
| 10 11 12 | # File 'lib/droiuby/support/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/droiuby/support/object/try.rb', line 71 def try(*args) nil end | 
#try!(*args) ⇒ Object
| 75 76 77 | # File 'lib/droiuby/support/object/try.rb', line 75 def try!(*args) nil end |