* Returns an array of all values in the set. * @returns Array of values * @complexity Time O(n) | Space O(n)
()
| 57 | * @complexity Time O(n) | Space O(n) |
| 58 | */ |
| 59 | values(): string[] { |
| 60 | return Object.keys(this.#items); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Number of elements in the set. |
no test coverage detected