ArrayZip<T> extension

on

Methods

uniq() List
Creates a duplicate-free version of an array, using SameValueZero for equality comparisons, in which only the first occurrence of each element is kept. The order of result values is determined by the order they occur in the array.
withOut(List values) List
without Creates an array excluding all given values Creates an array excluding all given values using SameValueZero for equality comparisons.
zip(List secondArray, List values) List
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