zipWith
zipWith<
A,B,C>(f,other): (data) => readonlyC[]
Defined in: Core/Arr.ts:259
Combines elements from two arrays using a function. Stops at the shorter array.
Type Parameters
Section titled “Type Parameters”A
B
C
Parameters
Section titled “Parameters”(a, b) => C
readonly B[]
Returns
Section titled “Returns”(
data): readonlyC[]
Parameters
Section titled “Parameters”readonly A[]
Returns
Section titled “Returns”readonly C[]