Macro b_tree_set

Source
macro_rules! b_tree_set {
    () => { ... };
    ($($elem:expr),*) => { ... };
}
Expand description

Creates a new BTreeSet instance.

§Arguments

  • expr - The elements to initialize the BTreeSet.

§Returns

  • BTreeSet<T> - A new BTreeSet containing the given elements.