//! Implements growing [web-glitz](https://crates.io/crates/web-glitz) memory buffers for slices of
//! data. Buffers are automatically reallocated on update when the length of the new data exceeds
//! the current capacity of the buffer.
//!
//! For generic data, see [BufferVec]. For data that may be bound as vertex index data in draw
//! tasks, see [IndexBufferVec].
pub use BufferVec;
pub use IndexBufferVec;