* Returns the key associated with the specified value. If no key is * associated with the specified value, `undefined` is returned. * * @param value The value to search for. * @returns The key associated with the specified value, or `undefined` if no * key is found. * * @example
(value: V)
| 125 | * ``` |
| 126 | */ |
| 127 | getReverse(value: V): K | undefined { |
| 128 | return this.#reverseMap.get(value); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Removes the element with the specified key. If the element does not exist, |
no test coverage detected