[][src]Macro tinf::params

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

Parameter list syntax for tparm.

For example, [Param(Int(1)), Param(Int(2)), Param(Str(b"hello"))] can be replaced by params!(1, 2, b"hello").