Skip to main content
Module

x/collections/vector.ts>Vector.from

Collection data structures that are not standard built-in objects in JavaScript. This includes a vector (double-ended queue), binary heap (priority queue), binary search tree, and a red black tree.
Latest
method Vector.from
import { Vector } from "https://deno.land/x/collections@0.12.1/vector.ts";

Creates a new vector from an array like or iterable object.

Parameters

collection: ArrayLike<T> | Iterable<T> | Vector<T>

Parameters

collection: ArrayLike<T> | Iterable<T> | Vector<T>
options: { map: (value: T, index: number) => U; thisArg?: V; }