Method: DR::CoreExt::Object#this

Defined in:
lib/dr/ruby_ext/core_modules.rb

#thisObject

in ruby 2.2, 'Object#itself' only returns self



292
293
294
295
# File 'lib/dr/ruby_ext/core_modules.rb', line 292

def this
	return yield(self) if block_given?
	return self
end