Object
Ruby wrapper for an ExpandTerm, i.e. a Xapian::ESetIterator in C++ Not dangerous, but inconvenient to use from a Ruby programming idiom, so we wrap it.
# File xapian.rb, line 114 def initialize(name, weight) @name = name @weight = weight end
# File xapian.rb, line 119 def ==(other) return other.is_a?(Xapian::ExpandTerm) && other.name == @name && other.weight == @weight end
[Validate]
Generated with the Darkfish Rdoc Generator 2.