We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 791713f commit 6e5b4b0Copy full SHA for 6e5b4b0
lax/src/lib.rs
@@ -100,6 +100,7 @@ pub use self::triangular::*;
100
pub use self::tridiagonal::*;
101
102
use cauchy::*;
103
+use std::mem::MaybeUninit;
104
105
pub type Pivot = Vec<i32>;
106
@@ -150,6 +151,10 @@ impl_as_ptr!(f32, f32);
150
151
impl_as_ptr!(f64, f64);
152
impl_as_ptr!(c32, lapack_sys::__BindgenComplex<f32>);
153
impl_as_ptr!(c64, lapack_sys::__BindgenComplex<f64>);
154
+impl_as_ptr!(MaybeUninit<f32>, f32);
155
+impl_as_ptr!(MaybeUninit<f64>, f64);
156
+impl_as_ptr!(MaybeUninit<c32>, lapack_sys::__BindgenComplex<f32>);
157
+impl_as_ptr!(MaybeUninit<c64>, lapack_sys::__BindgenComplex<f64>);
158
159
/// Upper/Lower specification for seveal usages
160
#[derive(Debug, Clone, Copy)]
0 commit comments