* Removes the value stored directly on this trie node.
()
| 209 | * Removes the value stored directly on this trie node. |
| 210 | */ |
| 211 | _deleteValue() { |
| 212 | this.f &= 6; |
| 213 | this.v = undefined; |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Returns the child node for a tuple element without creating one. |