Flowdock
method

offsetnext

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::SOAPArray
offsetnext() 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 881
  def offsetnext
    move = false
    idx = @offset.size - 1
    while !move && idx >= 0
      @offset[idx] += 1
      if @size_fixed
        if @offset[idx] < @size[idx]
          move = true
        else
          @offset[idx] = 0
          idx -= 1
        end
      else
        move = true
      end
    end
  end
Register or log in to add new notes.