Skip to main content
Module

x/rambda/immutable.d.ts>zipWith

Faster and smaller alternative to Ramda
Go to Latest
function zipWith
import { zipWith } from "https://deno.land/x/rambda@v7.0.1/immutable.d.ts";

Parameters

fn: (x: T, y: U) => TResult
list1: readonly T[]
list2: readonly U[]

Returns

readonly TResult[]

Parameters

fn: (x: T, y: U) => TResult
list1: readonly T[]

Returns

(list2: readonly U[]) => readonly TResult[]

Parameters

fn: (x: T, y: U) => TResult

Returns

(list1: readonly T[], list2: readonly U[]) => readonly TResult[]