reliq 0.3.0

A portable library of primitive-like constructs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
macro_rules! r#impl {
    ($($ty:ident)*) => {
        $(
            impl Signed for $ty {}
        )*
    };
}

pub trait Signed {}

r#impl!(
    i8
    i16
    i32
    i64
    i128
    isize
);