Interface KeyValueIterable<K, V>

A collection that can be iterated by keys and/or values.

interface KeyValueIterable {
    entries(options?): MaybeAsyncIterableIterator<[K, V]>;
    keys(options?): MaybeAsyncIterableIterator<K>;
    values(options?): MaybeAsyncIterableIterator<V>;
}

Type Parameters

  • K

  • V

Hierarchy

Implemented by

Methods

Generated using TypeDoc