1
use crate::{Denominator, Numerator, Recip, Q};
2
use core::ops::{Div, Mul};
3

            
4
impl<Nl, Dl, Nr, Dr, No, Do> Div<Q<Nr, Dr>> for Q<Nl, Dl>
5
where
6
    Self: Mul<<Q<Nr, Dr> as Recip>::Output, Output = Q<No, Do>>,
7
    Q<Nr, Dr>: Recip,
8
    Nl: Numerator<Dl>,
9
    Dl: Denominator,
10
    Nr: Numerator<Dr>,
11
    Dr: Denominator,
12
    No: Numerator<Do>,
13
    Do: Denominator,
14
{
15
    type Output = Q<No, Do>;
16

            
17
6
    fn div(self, rhs: Q<Nr, Dr>) -> Self::Output {
18
6
        let _ = rhs;
19
6
        Self::Output::new()
20
6
    }
21
}
22

            
23
#[cfg(test)]
24
mod tests {
25
    use super::*;
26
    use typenum::consts::*;
27

            
28
    #[test]
29
1
    fn test_div() {
30
1
        // zero / zero
31
1
        // let _ = Q::<Z0>::new() / Q::<Z0>::new();
32
1

            
33
1
        // zero / positive
34
1
        assert!(Q::<Z0>::new() / Q::<P3, P2>::new() == Q::<Z0>::new());
35

            
36
        // zero / negative
37
1
        assert!(Q::<Z0>::new() / Q::<N3, P2>::new() == Q::<Z0>::new());
38

            
39
        // positive / zero
40
        // let _ = Q::<P2, P3>::new() / Q::<Z0>::new();
41

            
42
        // positive / positive
43
1
        assert!(Q::<P2, P3>::new() / Q::<P3, P2>::new() == Q::<P4, P9>::new());
44

            
45
        // positive / negative
46
1
        assert!(Q::<P2, P3>::new() / Q::<N3, P2>::new() == Q::<N4, P9>::new());
47

            
48
        // negative / zero
49
        // let _ = Q::<N2, P3>::new() / Q::<Z0>::new();
50

            
51
        // negative / positive
52
1
        assert!(Q::<N2, P3>::new() / Q::<P3, P2>::new() == Q::<N4, P9>::new());
53

            
54
        // negative / negative
55
1
        assert!(Q::<N2, P3>::new() / Q::<N3, P2>::new() == Q::<P4, P9>::new());
56
1
    }
57
}