rcomplex 0.1.2

A simple class for manipulating complex numbers. This project is mainly for educational purposes, and I reccomend using other more complete packages for complex math.
Documentation
1
2
3
4
5
6
7
8
9
extern crate rcomplex;
use rcomplex::complex::Complex;

#[test]
fn all_operations() {
    let c1 = Complex::new(1.0, 1.0);

    assert!(c1 == c1);
}