Macro vector_deque

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

Creates a new VecDeque instance.

This macro can be used in two forms:

  • Without arguments, it creates an empty VecDeque.
  • With elements, it creates a VecDeque initialized with the provided elements.