Clear the given map.
(m llvm.Value)
| 181 | |
| 182 | // Clear the given map. |
| 183 | func (b *builder) createMapClear(m llvm.Value) { |
| 184 | b.createRuntimeCall("hashmapClear", []llvm.Value{m}, "") |
| 185 | } |
| 186 | |
| 187 | // createMapIteratorNext lowers the *ssa.Next instruction for iterating over a |
| 188 | // map. It returns a tuple of {bool, key, value} with the result of the |
no test coverage detected