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
- Host: GitHub
- URL: https://github.com/bjorn3/split_tokens
- Owner: bjorn3
- Created: 2016-07-30T10:00:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-24T14:39:07.000Z (over 4 years ago)
- Last Synced: 2025-03-10T18:11:34.719Z (2 months ago)
- Language: Rust
- Size: 2.93 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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!() );
}
```