1
use crate::{Denominator, Numerator, Q};
2
use core::ops::Neg;
3

            
4
impl<N, D, No> Neg for Q<N, D>
5
where
6
    N: Numerator<D> + Neg<Output = No>,
7
    D: Denominator,
8
    No: Numerator<D>,
9
{
10
    type Output = Q<No, D>;
11

            
12
3
    fn neg(self) -> Self::Output {
13
3
        Self::Output::new()
14
3
    }
15
}
16

            
17
#[cfg(test)]
18
mod tests {
19
    use super::*;
20
    use typenum::consts::*;
21

            
22
    #[test]
23
1
    fn test_neg() {
24
1
        // zero
25
1
        assert!(-Q::<Z0>::new() == Q::<Z0>::new());
26

            
27
        // positive
28
1
        assert!(-Q::<P1, P2>::new() == Q::<N1, P2>::new());
29

            
30
        // negative
31
1
        assert!(-Q::<N1, P2>::new() == Q::<P1, P2>::new());
32
1
    }
33
}