Skip to main content
Module

x/texa/src/structure/ReadonlyMap.ts>ReadonlyMap#forEach

A Deno web framework inspired by Oak and Express. Built-in support for WebSockets, middleware and routing.
Latest
method ReadonlyMap.prototype.forEach
import { ReadonlyMap } from "https://deno.land/x/texa@0.8.1/src/structure/ReadonlyMap.ts";

Iterate over every entry in the map.

Parameters

cb: (
value: V,
key: K,
source: this,
) => void

The callback.