Flowdock
method

deep_map

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::SOAPArray
deep_map(ary, &block) 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 787
  def deep_map(ary, &block)
    ary.collect do |ele|
      if ele.is_a?(Array)
        deep_map(ele, &block)
      else
        new_obj = block.call(ele)
        new_obj.elename = ITEM_NAME
        new_obj
      end
    end
  end
Register or log in to add new notes.