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 03edd91 commit 3d4fd4dCopy full SHA for 3d4fd4d
src/vector/mod.rs
@@ -101,8 +101,10 @@ pub trait VectorView<'a>:
101
pub trait Vector:
102
VectorOpsByValue<Self>
103
+ for<'b> VectorOpsByValue<&'b Self>
104
- + for<'a> VectorOpsByValue<Self::View<'a>>
105
- + for<'a, 'b> VectorOpsByValue<&'b Self::View<'a>>
+ // TODO: commenting out these because they cause a compiler hang (https://github.com/martinjrobins/diffsol/issues/3)
+ // TODO: replace when this is fixed
106
+ //+ for<'a> VectorOpsByValue<Self::View<'a>>
107
+ //+ for<'a, 'b> VectorOpsByValue<&'b Self::View<'a>>
108
+ Mul<Scale<Self::T>, Output = Self>
109
+ Div<Scale<Self::T>, Output = Self>
110
+ VectorMutOpsByValue<Self>
0 commit comments