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

Create a new Nevec (non-empty vector).