fix fmt
This commit is contained in:
parent
f6461d3862
commit
8638b796ac
|
@ -404,7 +404,11 @@ pub struct ColumnIterMut<'a, T, R: Dim, C: Dim, S: RawStorageMut<T, R, C>> {
|
||||||
impl<'a, T, R: Dim, C: Dim, S: 'a + RawStorageMut<T, R, C>> ColumnIterMut<'a, T, R, C, S> {
|
impl<'a, T, R: Dim, C: Dim, S: 'a + RawStorageMut<T, R, C>> ColumnIterMut<'a, T, R, C, S> {
|
||||||
pub(crate) fn new(mat: &'a mut Matrix<T, R, C, S>) -> Self {
|
pub(crate) fn new(mat: &'a mut Matrix<T, R, C, S>) -> Self {
|
||||||
let range = 0..mat.ncols();
|
let range = 0..mat.ncols();
|
||||||
ColumnIterMut { mat, range, phantom: Default::default() }
|
ColumnIterMut {
|
||||||
|
mat,
|
||||||
|
range,
|
||||||
|
phantom: Default::default(),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn ncols(&self) -> usize {
|
fn ncols(&self) -> usize {
|
||||||
|
@ -498,4 +502,6 @@ for ColumnIterMut<'a, T, R, C, S>
|
||||||
}
|
}
|
||||||
|
|
||||||
unsafe impl<'a, T: Scalar, R: Dim, C: Dim, S: 'a + RawStorageMut<T, R, C>> Send
|
unsafe impl<'a, T: Scalar, R: Dim, C: Dim, S: 'a + RawStorageMut<T, R, C>> Send
|
||||||
for ColumnIterMut<'a, T, R, C, S> {}
|
for ColumnIterMut<'a, T, R, C, S>
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue