ArrayZip<T> extension
- on
-
- List<
T>
- List<
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 -
Available on List<
T> , provided by the ArrayZip extensionwithout
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 -
Available on List<
zip the elements of array together with values from the other arrays @paramT> , provided by the ArrayZip extensionvalues
the list to compare against @paramsecondArray
the array to compare against