Skip to main content
Module

x/rimbu/mod.ts>Tuple.of

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
function Tuple.of
import { Tuple } from "https://deno.land/x/rimbu@0.12.3/mod.ts";
const { of } = Tuple;

Convenience method to type Tuple types

Examples

Example 1

const t = Tuple.of(1, 'a', true)
// type of t => Tuple<[number, string, boolean]>

Type Parameters

T extends Tuple.NonEmptySource

Parameters

...values: T
  • the values of the tuple

Returns

Tuple<T>