You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CSparse/Matrix.cs
+9
Original file line number
Diff line number
Diff line change
@@ -132,9 +132,18 @@ protected Matrix(int rowCount, int columnCount)
132
132
/// <summary>
133
133
/// Enumerates all values of the matrix.
134
134
/// </summary>
135
+
/// <remarks>
136
+
/// <see cref="EnumerateIndexedAsValueTuples"/> for a version that returns stack-allocated value tuples to save transient heap allocations (saves performance overhead of allocations + garbage collection) of the <see cref="Tuple"/> class.
137
+
/// </remarks>
135
138
/// <returns>Enumeration of tuples (i, j, a[i, j]).</returns>
0 commit comments