Creates an iterator bound to owner.
owner
Value type yielded by the owner.
Key type yielded with each value.
Object that performs traversal.
Optional
Whether traversal should run in reverse order.
Iterator bound to owner.
const dict = new Dictionary({ a: 1, b: 2 });iterate(dict).map((value) => value * 2);// => [2, 4] Copy
const dict = new Dictionary({ a: 1, b: 2 });iterate(dict).map((value) => value * 2);// => [2, 4]
Creates an iterator bound to
owner.