Compare commits

..

4 Commits

Author SHA1 Message Date
d9bdf8ee96
Merge branch 'main' into dataframe 2025-07-04 00:59:57 +01:00
e7d4e2221c
Merge pull request #50 from Magnus167/update-doc
Update documentation for HTML formatting
2025-07-04 00:59:51 +01:00
c7e39e6f99
Merge branch 'main' into update-doc 2025-07-04 00:57:07 +01:00
Palash Tyagi
bc5cc65897 Update documentation for to_vec method to improve clarity 2025-07-04 00:53:15 +01:00

View File

@ -76,7 +76,7 @@ impl<T: Clone> Matrix<T> {
self.data 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> { pub fn to_vec(&self) -> Vec<T> {
self.data.clone() self.data.clone()
} }