Skip to main content
Module

x/harmony/mod.ts>Collection#reduce

An easy to use Discord API Library for Deno.
Go to Latest
method Collection.prototype.reduce
Re-export
import { Collection } from "https://deno.land/x/harmony@v2.9.0/mod.ts";

Reduce the Collection to a single value

Parameters

callback: (
accumulator: T,
value: V,
key: K,
) => T
optional
initialValue: T