# File rexml/xpath_parser.rb, line 147
  def AndExpr path, nodeset
			#puts "AndExpr( #{path}, #{puta nodeset} )" if DEBUG
			GenericExpr( path, nodeset, /^\s*( and )/, @EQUALITYEXPR ) {|a,o,b| 
				a = Functions::boolean( a )
				b = Functions::boolean( b )
				[a & b]
			}
		end