Macro bst

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

a nice convenient macro which allows a user to initialize a tree with a number of elements usage: bst!{1, 2, 3, 4, 5, 6, 7, 8, 9, 0};