summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 8b0c32ba94bd75bf6e7f0b76e7d04add2c609a96 (plain)
1
2
3
4
5
6
7
//! As Close As Possible — [nearest neighbor search] in Rust.
//!
//! [nearest neighbor search]: https://en.wikipedia.org/wiki/Nearest_neighbor_search

pub mod distance;

pub use distance::{Distance, Metric, Proximity};