pareg_core 0.13.0

This library contains the implementation for the pareg library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Bulk implementation of a trait.
macro_rules! impl_all {
    (impl<$lt:lifetime>: $($t:ty),* $(,)? => $body:tt) => {
        $(impl<$lt> $t $body)*
    };
    (impl<$lt:lifetime> $tr:ty: $($t:ty),* $(,)? => $body:tt) => {
        $(impl<$lt> $tr for $t $body)*
    };
    (impl $tr:ty: $($t:ty),* $(,)? => $body:tt) => {
        $(impl $tr for $t $body)*
    };
}

pub(crate) use impl_all;