Struct tantivy::query::BitSetDocSet[][src]

pub struct BitSetDocSet { /* fields omitted */ }

A BitSetDocSet makes it possible to iterate through a bitset as if it was a DocSet.

Implementation detail

Skipping is relatively fast here as we can directly point to the right tiny bitset bucket.

TODO: Consider implementing a BitTreeSet in order to advance faster when the bitset is sparse

Trait Implementations

impl DocSet for BitSetDocSet
[src]

Goes to the next element. .advance(...) needs to be called a first time to point to the correct element. Read more

After skipping, position the iterator in such a way that .doc() will return a value greater than or equal to target. Read more

Returns the current document

Returns half of the max_doc This is quite a terrible heuristic, but we don't have access to any better value.

Fills a given mutable buffer with the next doc ids from the DocSet Read more

Appends all docs to a bitset.

Returns the number documents matching. Read more

Auto Trait Implementations