Skip to main content
Module

x/fun/mod.ts>array._unsafeJoin

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Latest
function array._unsafeJoin
import { array } from "https://deno.land/x/fun@v2.0.0/mod.ts";
const { _unsafeJoin } = array;

UNSAFE This operation mutates a standard Array by adding all elements from a second array to it. This function is intended for internal use only and thus has no api guaruntees.

Parameters

into: Array<A>
from: ReadonlyArray<A>

Returns

Array<A>