1#![allow(clippy::type_complexity)] 2 3mod intersect; 4mod merge; 5mod subtract; 6 7pub use intersect::*; 8pub use merge::*; 9pub use subtract::*;