batch-impl 0.5.5

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
1
2
3
4
5
6
7
// 错误:`^N` 展开产物数量超过上限 1024,视为笔误
use batch_impl::batch_impl;

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

fn main() {}