Structs§
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
, usingcmp
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
, usingcmp
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.