Merge pull request #199 from adamcrume/master, r=hauleth

Implement Default for Complex
This commit is contained in:
Josh Stone 2016-07-01 10:19:08 -07:00 committed by GitHub
commit a7ac5e4299
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ use traits::{Zero, One, Num, Float};
// probably doesn't map to C's _Complex correctly.
/// A complex number in Cartesian form.
#[derive(PartialEq, Copy, Clone, Hash, Debug)]
#[derive(PartialEq, Copy, Clone, Hash, Debug, Default)]
#[cfg_attr(feature = "rustc-serialize", derive(RustcEncodable, RustcDecodable))]
pub struct Complex<T> {
/// Real portion of the complex number