| 118 | } |
| 119 | |
| 120 | bool MutableHashTree::remove(slice key) { |
| 121 | if (!_root) { |
| 122 | if (!_imRoot) |
| 123 | return false; |
| 124 | _root = MutableInterior::newRoot(_imRoot); |
| 125 | } |
| 126 | return _root->remove(Target(key), 0); |
| 127 | } |
| 128 | |
| 129 | |
| 130 | MutableArray MutableHashTree::getMutableArray(slice key) { |