Skip to main content
Module

x/rimbu/mod.ts>Tuple.second

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

Returns the second element of a Tuple.

Examples

Example 1

const t = Tuple.of(1, 'a', true)
console.log(Tuple.second(t))
// => 'a'

Parameters

tuple: T
  • the source tuple