zip method

List zip(
  1. List secondArray,
  2. List values
)

zip the elements of array together with values from the other arrays @param values the list to compare against @param secondArray the array to compare against

Implementation

List zip(List secondArray, List values) =>
    array.zip(this, secondArray, values);