Object
# File xapian.rb, line 74 def initialize(term, wdf=nil, termfreq=nil) @term = term @wdf = wdf @termfreq = termfreq end
# File xapian.rb, line 80 def ==(other) return other.is_a?(Xapian::Term) && other.term == @term && other.wdf == @wdf && other.termfreq == @termfreq end
[Validate]
Generated with the Darkfish Rdoc Generator 2.