//! Bounded collections with compile-time capacity limits.
//!
//! - [`BoundedVec<T, N>`] — fixed-capacity vector with inline storage
//! - [`BoundedMap<K, V, N>`] — sorted array map with binary search
//! - [`ArrayString<N>`] — fixed-capacity UTF-8 string
pub use BoundedVec;
pub use BoundedMap;
pub use ArrayString;
rs/core/src/bounded/mod.rs
π 0.0%