Comment the argument of the (private) extend_rows function.

This commit is contained in:
Sébastien Crozet 2018-02-03 10:54:51 +01:00
parent 487af7d979
commit daba16023a
1 changed files with 2 additions and 0 deletions

View File

@ -671,6 +671,8 @@ unsafe fn compress_rows<N: Scalar>(
); );
} }
// Moves entries of a matrix buffer to make place for `ninsert` emty rows starting at the `i-th` row index.
// The `data` buffer is assumed to contained at least `(nrows + ninsert) * ncols` elements.
unsafe fn extend_rows<N: Scalar>( unsafe fn extend_rows<N: Scalar>(
data: &mut [N], data: &mut [N],
nrows: usize, nrows: usize,