import { Tuple } from "https://deno.land/x/rimbu@0.13.5/deep/tuple.ts";
const { append } = Tuple;
Returns the given tuple
with the given values
appended.
Examples
Example 1
Example 1
const t = Tuple.of(1, 'a')
console.log(Tuple.append(t, true, 5))
// => [1, 'a', true, 5]
Type Parameters
T extends Tuple.Source