Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/denocordts/deps.ts>Collection#concat

An Object Oriented Discord API wrapper for Deno.
Latest
method Collection.prototype.concat
import { Collection } from "https://deno.land/x/denocordts@1.2.0/deps.ts";

Combines this collection with others into a new collection. None of the source collections are modified.

Examples

const newColl = someColl.concat(someOtherColl, anotherColl, ohBoyAColl);

Parameters

...collections: Collection<K, V>[]

Collections to merge