pmhelp-internal 0.0.2

Internals that will be used by `pmhelp`. This should not be used directly.
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_export]
macro_rules! from_parens {
    ($from:expr) => {
        &{
            let content;
            let _ = ::syn::parenthesized!(content in $from);
            content
        }
    }
}