method

param_count

ruby latest stable - Class: SOAP::RPC::SOAPMethod

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

param_count(param_def, *type)
public

No documentation available.

# File lib/soap/rpc/element.rb, line 130
  def SOAPMethod.param_count(param_def, *type)
    count = 0
    param_def.each do |io_type, name, param_type|
      if type.include?(io_type)
        count += 1
      end
    end
    count
  end