deno / 1.23.2 / ~ / domiterable.html /

DomIterable

interface DomIterable <K, V> {
[[Symbol.iterator]]() : IterableIterator<[K, V]>;
entries() : IterableIterator<[K, V]>;
forEach( callback: (
value: V,
key: K,
parent: this,
) => void
, thisArg?: any) : void;
keys() : IterableIterator<K>;
values() : IterableIterator<V>;
}

Type Parameters

K
V

Methods

[[Symbol.iterator]]() : IterableIterator<[K, V]>
entries() : IterableIterator<[K, V]>
forEach( callback: (
value: V,
key: K,
parent: this,
) => void
, thisArg?: any) : void
keys() : IterableIterator<K>
values() : IterableIterator<V>

© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/DomIterable