Skip to main content
Module

x/proc/mod3.ts>Unzip

A better way to work with processes in Deno.
Go to Latest
type alias Unzip
import { type Unzip } from "https://deno.land/x/proc@0.20.39/mod3.ts";

Conditional type for Enumerable.unzip.

definition: T extends [infer A, infer B] ? [Enumerable<A>, Enumerable<B>] : never