* Returns an iterator for the map's keys in sorted order * * @returns An iterator for the map's keys
()
| 184 | * @returns An iterator for the map's keys |
| 185 | */ |
| 186 | keys(): IterableIterator<TKey> { |
| 187 | return this.sortedKeys[Symbol.iterator]() |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * Returns an iterator for the map's values in sorted order |
no outgoing calls