Skip to main content

Module types

Module types 

Source
Expand description

Shared value types.

Provides BatchContainer for grouping items into fixed-size batches, GeoPolygon for GeoJSON polygons with point-in-polygon tests, and RangeMap for looking up values by integer range.

Use these when batching writes, checking geographic containment, or mapping numeric keys to ranged buckets.

Re-exports§

pub use batch_container::BatchContainer;
pub use geo_polygon::GeoPolygon;
pub use range_map::RangeMap;

Modules§

batch_container
Fixed-size batching buffer.
geo_polygon
GeoJSON polygon with point-in-polygon tests.
range_map
Integer-range to value lookup.