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
// Error: a raw number as a left operand (forbidden by the DSL)
use batch_impl::batch_impl;

trait T {}

// `0^T` → a number on the left is not allowed by the DSL rules
#[batch_impl(0^T)]
trait T {}

fn main() {}