id_sys 0.1.0

Provides data structures which can be marked such that they only work with similarly marked integer data types.
Documentation
1
2
3
4
5
6
7
macro_rules! count_exprs {
    () => { 0usize };
    ($head: expr) => { 1usize };
    ($head: expr, $($tail: expr),*) => {1usize + $crate::internal::macros::count_exprs!($($tail),*)};
}

pub(crate) use count_exprs;