macro_rules! int_vector {
(@single $($x:tt)*) => { ... };
(@count $($rest:expr),*) => { ... };
($($key:expr,)+) => { ... };
($($key:expr),*) => { ... };
}macro_rules! int_vector {
(@single $($x:tt)*) => { ... };
(@count $($rest:expr),*) => { ... };
($($key:expr,)+) => { ... };
($($key:expr),*) => { ... };
}