| 44 | void set(slice key, T value) {heapDict()->set(key, value);} |
| 45 | |
| 46 | void remove(slice key) {heapDict()->remove(key);} |
| 47 | void removeAll() {heapDict()->removeAll();} |
| 48 | |
| 49 | /** Promotes an Array value to a MutableArray (in place) and returns it. |
nothing calls this directly
no outgoing calls
no test coverage detected