We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c91f6 commit 435c74eCopy full SHA for 435c74e
src/lib.rs
@@ -32,11 +32,11 @@ static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
32
//#[cfg(feature = "kalc-lib")]
33
//pub type C = kalc_lib::rug::Complex;
34
#[cfg(feature = "kalc-lib")]
35
-pub type I = kalc_lib::types::f64::Integer;
+pub type I = kalc_lib::types::f64::Integer<i128>;
36
37
-pub type F = kalc_lib::types::f64::Float;
+pub type F = kalc_lib::types::f64::Float<f64>;
38
39
-pub type C = kalc_lib::types::f64::Complex;
+pub type C = kalc_lib::types::f64::Complex<f64>;
40
#[cfg_attr(target_arch = "wasm32", wasm_bindgen(start))]
41
pub fn main() {
42
#[cfg(feature = "wasm-console")]
0 commit comments