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
/// Maps elements of this array by applying a function on the existing elements plus their one-based indices.
28
+
/// </summary>
29
+
/// <param name="mapper">A function which takes a value & a one-based index and returns a result</param>
30
+
/// <returns>A new array, the same size as this one, filled with the result of applying the mapper function to the original values & one-based indices.</returns>
/// Maps elements in this array to a new array, using a mapper function that takes one-based row/column indices as arguments
20
+
/// </summary>
21
+
/// <param name="mapper">Takes as arguments a row index, column index and value in the source array and returns the values for the corresponding row/column in the new array</param>
22
+
/// <returns>A new array containing mapped values</returns>
/// Creates a new array, populated by mapping the values/indices of the old array using a mapper function.
210
+
/// </summary>
211
+
/// <param name="mapper">A function which maps an element and its index in the original array to an element in the new array.</param>
212
+
/// <returns>A new array, whose values are the result of applying the mapper function to the associated element in the source array & its index.</returns>
/// Creates a new array, populated by mapping the values/indices of the old array using a mapper function.
181
+
/// </summary>
182
+
/// <param name="mapper">A function which maps an element and its row/column indices in the original array to an element in the new array</param>
183
+
/// <returns>A new array, whose values are the result of applying the mapper function to the associated element in the source array & its row/column indices.</returns>
0 commit comments