batch-impl 0.7.2

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
1
2
3
4
5
6
7
// Error: `^N` expansion product count exceeds the limit of 1024, treated as a typo
use batch_impl::batch_impl;

#[batch_impl(()^2000)]
trait TooMany {}

fn main() {}