kiddo 6.0.0-alpha.4

A high-performance, flexible, ergonomic k-d tree library. Ideal for geo- and astro- nearest-neighbour and k-nearest-neighbor queries
Documentation
/// Dummy leaf strategy for testing
#[doc(hidden)]
pub mod dummy;

/// Flat vector leaf storage strategy
#[doc(hidden)]
pub mod flat_vec;

/// Vector of arrays leaf storage strategy
#[doc(hidden)]
pub mod vec_of_arrays;

/// Arena-backed immutable leaf storage strategy
#[doc(hidden)]
pub mod vec_of_arenas;

/// Immutable tiled point arena with separate item storage
#[doc(hidden)]
pub mod vec_of_struct_of_tiles;

#[doc(inline)]
pub use dummy::DummyLeafStrategy;
#[doc(inline)]
pub use flat_vec::FlatVec;
#[doc(inline)]
pub use vec_of_arenas::VecOfArenas;
#[doc(inline)]
pub use vec_of_arrays::VecOfArrays;
#[doc(inline)]
pub use vec_of_struct_of_tiles::VecOfStructOfTiles;