Skip to content

Commit 3e01ce7

Browse files
committed
Add c64/c32
1 parent 9b9481e commit 3e01ce7

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ extern crate enum_error_derive;
4242
#[macro_use]
4343
extern crate derive_new;
4444

45+
pub mod types;
4546
pub mod impls;
4647
pub mod error;
4748
pub mod layout;

src/types.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#![allow(non_camel_case_types)]
2+
3+
use num_complex::Complex;
4+
5+
pub type c64 = Complex<f64>;
6+
pub type c32 = Complex<f32>;

0 commit comments

Comments
 (0)