#macro #split #tokens #compound #parts #individual #tt

split_tokens

按其单个部分分割复合词素

1 个不稳定版本

使用旧Rust 2015

0.1.0 2016年7月30日

#6 in #tt

GPL-3.0 许可证

3KB

按其单个部分分割复合词素。

示例

#[macro_use]
extern crate split_tokens;

macro_rules! cb{
    ( ( $($args:tt)* ) ( $($out:tt)* ) ) => {
        //...
    }
}

fn main(){
    split_tokens!( (>>+=-=<<) then cb!() );
}

无运行时依赖