Object
# File xapian.rb, line 230 def initialize(docid, doclength, wdf) @docid = docid @doclength = doclength @wdf = wdf end
# File xapian.rb, line 236 def ==(other) return other.is_a?(Xapian::Posting) && other.docid == @docid && other.doclength == @doclength && other.wdf == @wdf end
[Validate]
Generated with the Darkfish Rdoc Generator 2.