//! Contains implementations for how to encode arrays of coordinates for all other geometry array
//! types.
//!
//! Coordinates can be either _interleaved_, where they're represented as a `FixedSizeList`, or
//! _separated_, where they're represented with a `StructArray`.
pub use CoordBufferBuilder;
pub use InterleavedCoordBufferBuilder;
pub use SeparatedCoordBufferBuilder;