@nbogie/p5.neill-utils
    Preparing search index...

    Function zipWith

    • Creates an array of values by applying a function to elements paired from two arrays. *

      Type Parameters

      • T1
      • T2
      • TResult

      Parameters

      • array1: T1[]

        The first array.

      • array2: T2[]

        The second array.

      • iteratee: (value1: T1, value2: T2) => TResult

        The function to combine the paired elements.

      Returns TResult[]

      A new array containing the results of the iteratee function.