Macro bounded_collections::bounded_vec
source ยท macro_rules! bounded_vec { ($ ($values:expr),* $(,)?) => { ... }; ( $value:expr ; $repetition:expr ) => { ... }; }
Expand description
Build a bounded vec from the given literals.
The type of the outcome must be known.
Will not handle any errors and just panic if the given literals cannot fit in the corresponding bounded vec type. Thus, this is only suitable for testing and non-consensus code.