1 MODULE = Search::Xapian PACKAGE = Search::Xapian::PostingIterator
8 RETVAL = new PostingIterator();
14 PostingIterator * other
16 RETVAL = new PostingIterator(*other);
21 PostingIterator::DESTROY()
24 PostingIterator::inc()
29 PostingIterator::equal1(that)
30 PostingIterator * that
32 RETVAL = ((*THIS) == (*that));
37 PostingIterator::nequal1(that)
38 PostingIterator * that
40 RETVAL = ((*THIS) != (*that));
45 PostingIterator::get_docid()
47 RETVAL = THIS->operator*();
52 PostingIterator::get_doclength()
54 RETVAL = THIS->get_doclength();
59 PostingIterator::get_wdf()
61 RETVAL = THIS->get_wdf();
66 PostingIterator::get_description()
69 PostingIterator::positionlist_begin()
71 RETVAL = new PositionIterator(THIS->positionlist_begin());
76 PostingIterator::positionlist_end()
78 RETVAL = new PositionIterator(THIS->positionlist_end());
83 PostingIterator::skip_to(docid pos)