Macro b_tree_map

Source
macro_rules! b_tree_map {
    () => { ... };
    ($($key:expr => $val:expr),*) => { ... };
}
Expand description

Creates a new BTreeMap instance.

§Arguments

  • expr - The key-value pairs to initialize the BTreeMap.

§Returns

  • BTreeMap<K, V> - A new BTreeMap containing the given key-value pairs.