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 00f2f83 commit 3104be8Copy full SHA for 3104be8
src/impl2/mod.rs
@@ -15,8 +15,12 @@ pub use self::eigh::*;
15
16
use super::error::*;
17
18
-pub trait LapackScalar: OperatorNorm_ + QR_ + SVD_ + Solve_ + Cholesky_ + Eigh_ {}
19
-impl<A> LapackScalar for A where A: OperatorNorm_ + QR_ + SVD_ + Solve_ + Cholesky_ + Eigh_ {}
+trait_alias!(LapackScalar: OperatorNorm_,
+ QR_,
20
+ SVD_,
21
+ Solve_,
22
+ Cholesky_,
23
+ Eigh_);
24
25
pub fn into_result<T>(info: i32, val: T) -> Result<T> {
26
if info == 0 {
src/lib.rs
@@ -43,6 +43,7 @@ extern crate enum_error_derive;
43
#[macro_use]
44
extern crate derive_new;
45
46
+#[macro_use]
47
pub mod types;
48
pub mod error;
49
pub mod layout;
0 commit comments