This crate provides a single, easy to use macro
```rust use concatidents::concatidents;
concatidents!(fnname = foo, , bar { fn fnname() { // --snip-- } });
foo_bar(); ```
```rust macrorules! generatetest { ($method:ident($lhs:ident, $rhs:ident)) => { concatidents!(testname = $method, , $lhs, _, $rhs { #[test] fn testname() { let _ = $lhs::default().$method($rhs::default()); } }); }; }
struct S(i32);
impl Add
impl Sub
generatetest!(add(S, i32)); generatetest!(sub(S, i32)); ```
This macro will throw a compile error, if:
1. an unexpected syntax is passed
rust
concat_idents!({});
concat_idents!(ident {});
concat_idents!(ident = foo, bar);
...
2. one of the identifiers is invalid
rust
concat_idents!(ident = true {});
concat_idents!(ident = 1 {});
concat_idents!(ident = foo, 1.0 {});
concat_idents!(ident = {});
...