macro_rules! const_array_map {
($($key:expr => $value:expr),* $(,)?) => { ... };
}Expand description
Provides an easy way to construct a new ConstArrayMap from a number of
key-value pairs that can also be used in const contexts.
macro_rules! const_array_map {
($($key:expr => $value:expr),* $(,)?) => { ... };
}Provides an easy way to construct a new ConstArrayMap from a number of
key-value pairs that can also be used in const contexts.