Skip to main content

zer_blocking/
lib.rs

1//! Blocking strategies and inverted index for candidate pair generation.
2
3pub mod blocker;
4pub mod factory;
5pub mod index;
6pub mod keys;
7pub mod normalize;
8
9pub use blocker::CompositeBlocker;
10pub use factory::{BlockerFactory, CustomSchemaCategory, SchemaCategory};
11pub use index::InvertedIndex;