Expand description
Compile-time constant variants of several slice types over dynamically allocated types, implemented as slices over a fixed-capacity array (controlled by const generics).
The types in this crate will panic at compile-time if they would exceed the size of their array (currently produces a very unhelpful error - see #51999)
Structsยง
- Array
Slice - A slice-like type with a fixed-capacity array as storage to be used with compile-time constants.
- Const
String - A string with a fixed-capacity array as storage to be used in compile-time constants.