Flowdock
method

dump

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: WSDL::SOAP::MappingRegistryCreator
dump(types) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/wsdl/soap/mappingRegistryCreator.rb, line 28
  def dump(types)
    @types = types
    map_cache = []
    map = ""
    @types.each do |type|
      if map_cache.index(type).nil?
        map_cache << type
        if type.namespace != XSD::Namespace
          if typemap = dump_typemap(type)
            map << typemap
          end
        end
      end
   end
    return map
  end
Register or log in to add new notes.