1 Commits

Author SHA1 Message Date
Palash Tyagi
d93adb8205 Merge a61ff8a4e1 into 36588e38f6 2025-07-04 00:55:19 +01:00

View File

@@ -76,7 +76,7 @@ impl<T: Clone> Matrix<T> {
self.data
}
/// Creates a new `Vec<T>` containing the matrix data (cloned).
/// Creates a new Vec<T> containing the matrix data (cloned).
pub fn to_vec(&self) -> Vec<T> {
self.data.clone()
}