Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/rubyang/compat.rb

Direct Known Subclasses

Rubyang::Xpath::Predicates

Instance Method Summary collapse

Instance Method Details

#to_hObject



6
7
8
9
10
11
12
# File 'lib/rubyang/compat.rb', line 6

def to_h
  h = Hash.new
  self.each do |k, v|
    h[k] = v
  end
  h
end