From daba16023adb6b25321e9e7cc241e7b3554d462c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sat, 3 Feb 2018 10:54:51 +0100 Subject: [PATCH] Comment the argument of the (private) extend_rows function. --- src/core/edition.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/edition.rs b/src/core/edition.rs index 5ee1fd4b..b3b549dd 100644 --- a/src/core/edition.rs +++ b/src/core/edition.rs @@ -671,6 +671,8 @@ unsafe fn compress_rows( ); } +// 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( data: &mut [N], nrows: usize,