private Method

SOAPArray.retrieve(idxary)

There's no documentation for this item.

Source Code

# File soap/baseData.rb, line 847
def retrieve(idxary)
  data = @data
  rank = 1
  while rank <= idxary.size
    idx = idxary[rank - 1]
    if data[idx].nil?
      data = data[idx] = Array.new
    else
      data = data[idx]
    end
    rank += 1
  end
  data
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.