[][src]Trait fractran::frac::FractranNat

pub trait FractranNat: Into<u64> + Mul<Self, Output = Self> + Div<Self, Output = Self> + Divides + Clone + Debug + Sized { }

Wrapper trait for the various things that numbers in Fractran programs need to do. PrimeBasis satisfies this, as does u64.

Implementors

impl<T> FractranNat for T where
    T: Into<u64> + Mul<Self, Output = Self> + Div<Self, Output = Self> + Divides + Clone + Debug + Sized
[src]

Loading content...