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
8
9
10
11
// Error: composite predicate `[T; N]: Sized` references const parameter N, but the impl does not declare a same-named parameter
use batch_impl::batch_impl;

#[batch_impl(<T> ArrBad<T, 5> ())]
trait ArrBad<T, const N: usize>
where
    [T; N]: Sized,
{
}

fn main() {}