* @param {(value: V, key: K, map: Map ) => void} callbackfn * @param {any} [this_arg]
(callbackfn, this_arg)
| 123 | * @param {any} [this_arg] |
| 124 | */ |
| 125 | forEach(callbackfn, this_arg) { |
| 126 | this.#read_all(); |
| 127 | super.forEach(callbackfn, this_arg); |
| 128 | } |
| 129 | |
| 130 | /** @param {K} key */ |
| 131 | get(key) { |