* Returns an iterator for the map's entries in sorted order * * @returns An iterator for the map's entries
()
| 175 | * @returns An iterator for the map's entries |
| 176 | */ |
| 177 | entries(): IterableIterator<[TKey, TValue]> { |
| 178 | return this[Symbol.iterator]() |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Returns an iterator for the map's keys in sorted order |
no outgoing calls