Flowdock
method

traverse_data

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::SOAPArray
traverse_data(data, rank = 1) 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 862
  def traverse_data(data, rank = 1)
    idx = 0
    while idx < ranksize(rank)
      if rank < @rank
        traverse_data(data[idx], rank + 1) do |*v|
          v[1, 0] = idx
          yield(*v)
        end
      else
        yield(data[idx], idx)
      end
      idx += 1
    end
  end
Register or log in to add new notes.