fmty 0.1.1

Composable `core::fmt` utilities.
Documentation
1
2
3
4
5
6
7
8
//! Internal helper macros.

/// Invokes a macro after removing the first identifier.
macro_rules! peel {
    ($mac:ident: $x:ident $(, $rest:ident)*) => {
        $mac! { $($rest),* }
    };
}