summaryrefslogtreecommitdiffstats
path: root/lib/rexml/element.rb
diff options
context:
space:
mode:
authorser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-08 01:53:33 +0000
committerser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-08 01:53:33 +0000
commit0dd6985ec5a467375d8cf63193fe31a3181a9699 (patch)
tree801ef38e4081aec080ac1ce1d3ca3f1273ba861e /lib/rexml/element.rb
parent13578f377dfa575ee44980e08a1dae0190af8c2a (diff)
downloadruby-0dd6985ec5a467375d8cf63193fe31a3181a9699.tar.gz
ruby-0dd6985ec5a467375d8cf63193fe31a3181a9699.tar.xz
ruby-0dd6985ec5a467375d8cf63193fe31a3181a9699.zip
Merged changes from REXML 3.1.5.
The list of bug fixes/enhancements is at: http://www.germane-software.com/projects/rexml/query?status=closed&milestone=3.1.5 Merged Nobu's & DrBrain's changes into REXML head. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10886 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/element.rb')
-rw-r--r--lib/rexml/element.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/rexml/element.rb b/lib/rexml/element.rb
index 80463d95b..435076420 100644
--- a/lib/rexml/element.rb
+++ b/lib/rexml/element.rb
@@ -938,6 +938,29 @@ module REXML
def each( xpath=nil, &block)
XPath::each( @element, xpath ) {|e| yield e if e.kind_of? Element }
end
+
+ def collect( xpath=nil, &block )
+ collection = []
+ XPath::each( @element, xpath ) {|e|
+ collection << yield(e) if e.kind_of?(Element)
+ }
+ collection
+ end
+
+ def inject( xpath=nil, initial=nil, &block )
+ first = true
+ XPath::each( @element, xpath ) {|e|
+ if (e.kind_of? Element)
+ if (first and initial == nil)
+ initial = e
+ first = false
+ else
+ initial = yield( initial, e ) if e.kind_of? Element
+ end
+ end
+ }
+ initial
+ end
# Returns the number of +Element+ children of the parent object.
# doc = Document.new '<a>sean<b/>elliott<b/>russell<b/></a>'