Flowdock
method

new

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::SOAPArray
new(type = nil, rank = 1, arytype = nil) public

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 707
  def initialize(type = nil, rank = 1, arytype = nil)
    super()
    @type = type || ValueArrayName
    @rank = rank
    @data = Array.new
    @sparse = false
    @offset = Array.new(rank, 0)
    @size = Array.new(rank, 0)
    @size_fixed = false
    @position = nil
    @arytype = arytype
  end
Register or log in to add new notes.