An open API service indexing awesome lists of open source software.

https://github.com/bjorn3/split_tokens

Split compound tokens in their individual parts
https://github.com/bjorn3/split_tokens

Last synced: 2 months ago
JSON representation

Split compound tokens in their individual parts

Awesome Lists containing this project

README

        

Split compound tokens in their individual parts.
================================================

# Development discontinued.

Example
-------

```rust
#[macro_use]
extern crate split_tokens;

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

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