function Coll Coll<T>(...args: T[]): Collection<T> Creates a new collection. Examples 🔗 ▶ Example 1 import { assert } from "std/assert/mod.ts"; import { Coll } from "./collection.ts"; assert(Coll(1, 2, 3) instanceof Collection); Type Parameters 🔗 T Parameters 🔗 ...args : T[] Return Type 🔗 Collection<T>