macro_rules! params {
    [] => { ... };
    [($idx:expr=>$value:expr)] => { ... };
    [$(($idx:expr=>$value:expr),)*] => { ... };
}