Skip to main content
Module

x/ts_toolbelt_unofficial/mod.ts>T.MergeAll

👷 TypeScript's largest type utility library, now on Deno
Latest
type alias T.MergeAll
import { type T } from "https://deno.land/x/ts_toolbelt_unofficial@1.1.0/mod.ts";
const { MergeAll } = T;

[[Merge]] a list of [[List]]s into L. Merges from left to right, first items get completed by the next ones (last-in completes).

Examples

Example 1

Type Parameters

L extends List
Ls extends List<List>
optional
depth extends Depth = "flat"
optional
ignore extends object = BuiltIn
optional
fill extends any = undefined
definition: Cast<OMergeAll<L, Ls, depth, ignore, fill>, List>