Flowdock
method

struct

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: AbstractTreeParser
struct(node) private

No documentation

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

Hide source
# File lib/xmlrpc/parser.rb, line 389
      def struct(node)
        nodeMustBe(node, "struct")

        hash = {}
        node.childNodes.to_a.each do |me|
          n, v = member(me)
          hash[n] = v
        end

        Convert.struct(hash)
      end
Register or log in to add new notes.