1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! H3 index types
pub mod bits;
mod cell;
mod edge;
mod iterator;
mod mode;
mod triangle;
mod vertex;
pub use cell::CellIndex;
pub use edge::{DirectedEdgeIndex, Edge};
pub use mode::IndexMode;
pub use vertex::{Vertex, VertexIndex};
use iterator::{Children, Compact, GridPathCells};
use triangle::Triangle;