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 0c35adf commit 3c1969bCopy full SHA for 3c1969b
src/lib.rs
@@ -71,7 +71,6 @@
71
clippy::map_entry,
72
clippy::comparison_chain,
73
clippy::type_complexity,
74
- clippy::needless_lifetimes,
75
clippy::too_many_arguments,
76
clippy::many_single_char_names
77
)]
src/linalg/naive/dense_matrix.rs
@@ -305,7 +305,7 @@ impl<T: RealNumber> DenseMatrix<T> {
305
306
/// Creates new column vector (_1xN_ matrix) from a vector.
307
/// * `values` - values to initialize the matrix.
308
- pub fn iter<'a>(&'a self) -> DenseMatrixIterator<'a, T> {
+ pub fn iter(&self) -> DenseMatrixIterator<'_, T> {
309
DenseMatrixIterator {
310
cur_c: 0,
311
cur_r: 0,
0 commit comments