method
param_count
v1_8_7_72 -
Show latest stable
- Class:
SOAP::RPC::SOAPMethod
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