//! 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;
Homonyms
cyb/evy/forks/naga/src/back/hlsl/mod.rs
struct Baz { m: mat3x2, } struct Baz { float2 m_0; float2 m_1; float2 m_2; }; float3x2 GetMatmOnBaz(Baz obj) { return float3x2(obj.m_0, obj.m_1, obj.m_2); }