Expand description
Set operations on ordered iterators. These are the fundamental join operations of the search engine.
These are provided by iter_set, except progressive and deduplicate,
which are written by be.
Structs§
Functions§
- Removes consecutive duplicate items.
- Removes consecutive duplicate items.
- Returns an iterator of the items in
aAND NOT inb. - Returns an iterator of the items in common between
aandb. - Like
iter_set::classifybut when we get two “equal” frommatches, we let one of those stay in the “cache” to match future ones. The last one or the greatest one according tocomparisonstays. - Returns an iterator of all the items that occur in either
aorb.