Crate iter_set_ops

Source

Structs§

DetailedIntersectIterator
DetailedMergeIterator
IntersectIterator
MergeIterator
SubtractIterator

Functions§

intersect_iters
Iterates over the intersection of many sorted deduplicated iterators.
intersect_iters_by
Iterates over the intersection of many sorted deduplicated iterators, using cmp as the comparison operator.
intersect_iters_detailed
Iterates over the intersection of many sorted deduplicated iterators and groups equal items into a Vec.
intersect_iters_detailed_by
Iterates over the intersection of many sorted deduplicated iterators and groups equal items into a Vec, using cmp as the comparison operator.
merge_iters
Iterates over the union of many sorted deduplicated iterators.
merge_iters_by
Iterates over the union of many sorted deduplicated iterators, using cmp as the comparison operator.
merge_iters_detailed
Iterates over the union of many sorted deduplicated iterators and groups equal items with their indices into a Vec.
merge_iters_detailed_by
Iterates over the union of many sorted deduplicated iterators and groups equal items with their indices into a Vec, using cmp as the comparison operator.
subtract_iters
Iterates over the difference of many sorted deduplicated iterators.
subtract_iters_by
Iterates over the difference of many sorted deduplicated iterators, using cmp as the comparison operator.