manhattan-tree 0.1.0

A spatial tree which can effiently find closest key to a point, by manhattan distance.
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(nll)]
#![feature(vec_remove_item)]
#![feature(duration_as_u128)]

extern crate bonzai;
extern crate num;

pub mod tree;
pub mod collections;
pub mod space;

#[cfg(test)]
mod test;