//! 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.
pub use BatchContainer;
pub use GeoPolygon;
pub use RangeMap;