summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 1f29a2487a433de0cae600fc3d056382c884cf07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct Complex<T> {
    real: T,
    imag: T
}

impl<T: Clone> Complex<T> {
    fn new(real: T, imag: T) -> Complex<T> {
        Complex{real: real, imag: imag}
    }
}

impl<T> std::ops::Add for Complex<T> where T: std::ops::Add<Output=T> + Copy {
    type Output = Complex<T>;

    fn add(self, other: Self) -> Self {
        let real = self.real + other.real;
        let imag = self.imag + other.imag;
        Complex::new(real, imag)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    #[test]
    fn addition() {
        let a = Complex::new(1, 5);
        let b = Complex::new(-3, 2);
        assert_eq!(a+b, Complex::new(-2, 7));
    }
}