iter-set-ops 0.2.4

Fast set operations on an arbitrary number of sorted deduplicated iterators
Documentation
1
2
3
4
5
6
7
8
9
#![allow(clippy::type_complexity)]

mod intersect;
mod merge;
mod subtract;

pub use intersect::*;
pub use merge::*;
pub use subtract::*;