Class: Object

Inherits:
BasicObject
Defined in:
lib/hyalite/try.rb

Instance Method Summary collapse

Instance Method Details

#tryObject



2
3
4
5
6
# File 'lib/hyalite/try.rb', line 2

def try
  unless self.nil?
    yield self
  end
end