fix doc for `map_with_location` method

This commit is contained in:
Wenping Guo 2019-01-30 09:31:10 +08:00
parent 5569850dbd
commit bb3f3ac2ee
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ impl<N: Scalar, R: Dim, C: Dim, S: Storage<N, R, C>> Matrix<N, R, C, S> {
}
/// Returns a matrix containing the result of `f` applied to each of its entries. Unlike `map`,
/// `f` also gets passed the row and column index, i.e. `f(value, row, col)`.
/// `f` also gets passed the row and column index, i.e. `f(row, col, value)`.
#[inline]
pub fn map_with_location<N2: Scalar, F: FnMut(usize, usize, N) -> N2>(
&self,