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.