Macro seq

Source
macro_rules! seq {
    () => { ... };
    ($elem:expr; $n:expr) => { ... };
    ($($x:expr),+ $(,)?) => { ... };
}
Expand description

Constructs a Seq from a literal in a similar way that vec! does for Vec.