method

following

v1_8_7_330 - Show latest stable - Class: REXML::XPathParser
following( node )
private

No documentation available.

# File lib/rexml/xpath_parser.rb, line 626
    def following( node )
      #puts "IN PRECEDING"
      acc = []
      p = next_sibling_node( node )
      #puts "P = #{p.inspect}"
      while p
        acc << p
        p = following_node_of( p )
        #puts "P = #{p.inspect}"
      end
      acc
    end