method

assign

v1_8_7_330 - Show latest stable - Class: SOAP::Property
assign(ary, value)
private

No documentation available.

# File lib/soap/property.rb, line 235
  def assign(ary, value)
    ref = self
    hook = NO_HOOK
    ary[0..-2].each do |name|
      key = to_key(name)
      hook += ref.local_hook(key, false)
      ref = ref.deref_key(key)
    end
    last_key = to_key(ary.last)
    ref.local_assign(last_key, value)
    hook + ref.local_hook(last_key, true)
  end