Exemple #1
0
 /**
  * Replaces elements with the results of applying the given mapping to each index and current
  * element value.
  *
  * @param op the op
  * @return this (to simplify use in expressions)
  */
 public ParallelArray<T> replaceWithMappedIndex(IntAndObjectToObject<? super T, ? extends T> op) {
   super.replaceWithMappedIndex(op);
   return this;
 }