traitlit 0.1.0

This crate exposes an atribute for implementing traits for integer and float types.
Documentation
use traitlit::lit;

trait Test {
    fn test() -> bool;
}

#[lit(u_)]
impl Test for _ {
    fn test() -> bool {
        true
    }
}

#[lit(i_)]
impl Test for _ {
    fn test() -> bool {
        false
    }
}

#[lit(u_)]
trait Zero {
    fn zero() -> Self {
        0
    }
}

#[lit(u128)]
trait Foo<T = _> {
    fn foo() -> Self {
        1
    }
}

fn main() {
    assert_eq!(u32::test(), true);
    assert_eq!(i8::test(), false);
    assert_eq!(usize::zero(), 0);
    assert_eq!(<u128 as Foo<u128>>::foo(), 1);
}