(key: K, defaultValue: V | undefined, tree: BTree<K, V>)
| 721 | } |
| 722 | |
| 723 | get(key: K, defaultValue: V | undefined, tree: BTree<K, V>): V | undefined { |
| 724 | const i = this.indexOf(key, 0, tree._compare), |
| 725 | children = this.children |
| 726 | return i < children.length |
| 727 | ? children[i]!.get(key, defaultValue, tree) |
| 728 | : undefined |
| 729 | } |
| 730 | |
| 731 | getPairOrNextLower( |
| 732 | key: K, |