Example #1
0
 public Array Map(ArrayMapCallback mapCallback)
 {
     return(null);
 }
Example #2
0
 public Array Map(ArrayMapCallback mapCallback)
 {
     return null;
 }
Example #3
0
 /// <summary>
 /// Returns a new array by mapping each item in the specified array
 /// using the provided callback.
 /// </summary>
 /// <param name="a">The array of items to map.</param>
 /// <param name="callback">The function that performs the mapping.</param>
 /// <returns>The array of mapped values.</returns>
 public static Array Map(Array a, ArrayMapCallback callback)
 {
     return(null);
 }
Example #4
0
 public extern Array Map(ArrayMapCallback mapCallback);