typenum-consts 0.1.1

Procedural macros that take a literal integer (or the result of an evaluation of simple mathematical expressions or an environment variable whose value is a literal integer) and convert it to a `typenum::Unsigned` / `typenum::Integer` type-level positive/negative/unsigned integer.
Documentation
1
2
3
4
5
6
7
8
9
10
macro_rules! debug_eprintln {
    ($($arg: tt)*) => {

        #[cfg(debug_assertions)]
        #[cfg(__debug_tnconst)]
        ::std::eprintln!($($arg)*)
    };
}

pub(crate) use debug_eprintln;