h3o 0.9.4

A Rust implementation of the H3 geospatial indexing system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use core::convert::TryFrom;

use super::*;

#[test]
fn stop_after_none() {
    let origin = CellIndex::try_from(0x8908000001bffff).expect("origin");
    let iter = DiskDistancesUnsafe::new(origin, 1);

    assert_eq!(iter.count(), 5);
}