#logic #level #zero #systems #simpler #coding #unsigned

type-fn

Allows for simpler coding of type-level logic, e.g. for type-number systems.

3 releases

0.1.2 Nov 15, 2023
0.1.1 Nov 14, 2023
0.1.0 Nov 14, 2023

#733 in Rust patterns

Download history 31/week @ 2024-02-25 42/week @ 2024-03-31 66/week @ 2024-04-14

108 downloads per month

MIT license

7KB
89 lines

type-fn

type-fn allows you to more simply create logic at the type level.

Example

Unsigned addition, subtraction, and multiplication:

struct Zero;
struct Succ<T>(PhantomData<T>);
type_fn! {
    fn Add<Lhs, Rhs>;
    fn Sub<Lhs, Rhs>;
    fn Mul<Lhs, Rhs>;
}
type_fn_impl! {
    fn<TypeFn> Add< => Zero, Rhs> => Rhs;
    fn<TypeFn> Add<N => Succ<N>, Rhs>
        where
            Add<N, Rhs>: + TypeFn,
        => Succ<<Add<N, Rhs> as TypeFn>::Ret>;

    fn<TypeFn> Sub<Lhs, => Zero> => Lhs;
    fn<TypeFn> Sub<Lhs => Succ<Lhs>, Rhs => Succ<Rhs>>
        where
            Sub<Lhs, Rhs> : + TypeFn,
        => <Sub<Lhs, Rhs> as TypeFn>::Ret;

    fn<TypeFn> Mul< => Zero, Rhs> => Zero;
    fn<TypeFn> Mul<Lhs => Succ<Lhs>, Rhs>
        where
            Mul<Lhs, Rhs>: + TypeFn,
            Add<Rhs, <Mul<Lhs, Rhs> as TypeFn>::Ret>: + TypeFn,
        => <Add<Rhs, <Mul<Lhs, Rhs> as TypeFn>::Ret> as TypeFn>::Ret;
}

No runtime deps