Module: Enumerable

Included in:
SOAP::Property
Defined in:
lib/soap4r_19_patch/soap/property.rb

Instance Method Summary collapse

Instance Method Details

#inject(init) ⇒ Object



331
332
333
334
335
336
337
# File 'lib/soap4r_19_patch/soap/property.rb', line 331

def inject(init)
  result = init
  each do |item|
	result = yield(result, item)
  end
  result
end