Add `Clone` to `MatrixIter` and `MatrixIterMut`

This commit is contained in:
Hennadii Chernyshchyk 2023-06-27 14:02:20 +03:00
parent 5baf86b311
commit 0754bd28f3
No known key found for this signature in database
GPG Key ID: 24623302B8395825
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ use crate::base::{Matrix, MatrixView, MatrixViewMut, Scalar};
macro_rules! iterator {
(struct $Name:ident for $Storage:ident.$ptr: ident -> $Ptr:ty, $Ref:ty, $SRef: ty) => {
/// An iterator through a dense matrix with arbitrary strides matrix.
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct $Name<'a, T, R: Dim, C: Dim, S: 'a + $Storage<T, R, C>> {
ptr: $Ptr,
inner_ptr: $Ptr,