A macro to allow for compile time counting
Every instance of _int_
will be replaced with either a literal or an ident.
count_macro::count
will panic in debug mode if counter exceeds usize.
If you wish to wrap to 0, please use count_macro::wrapping_count
.
```rust use count_macro::count;
let a = count!(vec![int, int, int]); assert_eq!(a, vec![0, 1, 2]);
```
```rust use count_macro::count;
count! { let aint = "Hello"; let aint = "World"; }
asserteq!(a0, "Hello"); asserteq!(a1, "World");
```
```rust use count_macro::count;
macrorules! mymacro { ($($v:expr),*) => { count!{ $( let _ = $v; // Ignoring $v
println!("{}", _int_);
)*
}
};
}
my_macro!('@', '@', '@', '@'); // Will print from 0 to 3
```
with _int_countername_
you'll be able to create a new counter called "countername".
This won't be incremented by _int_
or any other counter such as _int_0_
or _int_x_
.
```rust use count_macro::count;
// With two different counters // int does not increment intname_ count! { let aint = intname; let aint_ = intname; let aint_ = intname_; }
asserteq!(a0, 0); asserteq!(a1, 1); assert_eq!(a2, 2);
```