(shift: number, hash: number, key: K)
| 647 | } |
| 648 | |
| 649 | get(shift: number, hash: number, key: K): Option.Option<V> { |
| 650 | const idx = mask(hash, shift) |
| 651 | const child = this.children[idx] |
| 652 | return child ? child.get(shift + SHIFT, hash, key) : Option.none() |
| 653 | } |
| 654 | |
| 655 | has(shift: number, hash: number, key: K): boolean { |
| 656 | const idx = mask(hash, shift) |