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

pub mod coords;
pub mod distance;

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