macro_rules! if_vec {
    (Vec<$type:ty>, THEN {$($then:tt)*} ELSE {$($otherwise:tt)*}) => { ... };
    ($type:ty, THEN {$($then:tt)*} ELSE {$($otherwise:tt)*}) => { ... };
}