class Xapian::Value
Ruby wrapper for Xapian::ValueIterator
Attributes
Public Class Methods
Source
# File xapian.rb, line 131 def initialize(value, valueno, docid) @value = value @valueno = valueno @docid = docid end
Public Instance Methods
Source
# File xapian.rb, line 137 def ==(other) return other.is_a?(Xapian::Value) && other.value == @value && other.valueno == @valueno && other.docid == @docid end