Expose the topk module internally
- Id
- d438a5d02ff7f4a5f94a704e7ef118af66661ca3
- Author
- Caio
- Commit time
- 2020-02-15T14:47:37+01:00
Modified tique/src/conditional_collector/mod.rs
//! Check `examples/conditional_collector_tutorial.rs` for more details.
mod custom_score;
mod top_collector;
-mod topk;
+pub(crate) mod topk;
mod traits;
pub use top_collector::{CollectionResult, TopCollector};