class FBO::Dump::ComplexPropertyNode

Complex properties may contain other simple properties

Public Instance Methods

value() click to toggle source
# File lib/fbo/node_extensions.rb, line 166
def value
  value_hash = {}
  elements.each { |e| value_hash.merge!(e.to_hash) }
  value_hash
end