Trait dimensioned::peano::DivPeano [] [src]

pub trait DivPeano<RHS>: Peano {
    type Output;
}

This trait allows us to divide two Peano numbers so long as the numerator is divisible by the denominator.

We are operating in a ring, so an error will be if the numerator is not divisible by the denominator

Associated Types

type Output

Implementors