Flowdock
method

retrieve

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::SOAPArray
retrieve(idxary) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/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
Register or log in to add new notes.