pharetra 0.0.1

Utility data structures and algorithms for Chiron.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#[path = "point.rs"]
pub mod point;

#[path = "table.rs"]
pub mod table;

pub use point::Point;
pub use table::Table;

pub mod prelude {
    pub use crate::point::Point;
    pub use crate::table::Table;
}