The source array.
The list of elements.
import { fromArray, toArray } from "./list.ts";
import { assertEquals } from "../deps.ts";
assertEquals(toArray(fromArray([2.81, 3.14, 1.58])), [2.81, 3.14, 1.58]);
assertEquals(toArray(fromArray([])), []);
Generated using TypeDoc
Creates the list of elements from
Array
.